Text3DDoc.cpp
上传用户:tengyuc
上传日期:2007-08-14
资源大小:722k
文件大小:2k
- // Text3DDoc.cpp : implementation of the CText3DDoc class
- //
- #include "stdafx.h"
- #include "Text3D.h"
- #include "Text3DDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CText3DDoc
- IMPLEMENT_DYNCREATE(CText3DDoc, CDocument)
- BEGIN_MESSAGE_MAP(CText3DDoc, CDocument)
- //{{AFX_MSG_MAP(CText3DDoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CText3DDoc construction/destruction
- CText3DDoc::CText3DDoc()
- {
- // TODO: add one-time construction code here
- }
- CText3DDoc::~CText3DDoc()
- {
- }
- BOOL CText3DDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CText3DDoc serialization
- void CText3DDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CText3DDoc diagnostics
- #ifdef _DEBUG
- void CText3DDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CText3DDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CText3DDoc commands