AppIPTransformDoc.cpp
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:2k
- // AppIPTransformDoc.cpp : implementation of the CAppIPTransformDoc class
- //
- #include "stdafx.h"
- #include "AppIPTransform.h"
- #include "AppIPTransformDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CAppIPTransformDoc
- IMPLEMENT_DYNCREATE(CAppIPTransformDoc, CDocument)
- BEGIN_MESSAGE_MAP(CAppIPTransformDoc, CDocument)
- //{{AFX_MSG_MAP(CAppIPTransformDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CAppIPTransformDoc construction/destruction
- CAppIPTransformDoc::CAppIPTransformDoc()
- {
- // TODO: add one-time construction code here
- }
- CAppIPTransformDoc::~CAppIPTransformDoc()
- {
- }
- BOOL CAppIPTransformDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CAppIPTransformDoc serialization
- void CAppIPTransformDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CAppIPTransformDoc diagnostics
- #ifdef _DEBUG
- void CAppIPTransformDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CAppIPTransformDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CAppIPTransformDoc commands