// ZTestDoc.cpp : implementation of the CZTestDoc class // #include "stdafx.h" #include "ZTest.h" #include "ZTestDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CZTestDoc IMPLEMENT_DYNCREATE(CZTestDoc, CDocument) BEGIN_MESSAGE_MAP(CZTestDoc, CDocument) //{{AFX_MSG_MAP(CZTestDoc) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CZTestDoc construction/destruction CZTestDoc::CZTestDoc() { } CZTestDoc::~CZTestDoc() { } BOOL CZTestDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CZTestDoc serialization void CZTestDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { } else { } } ///////////////////////////////////////////////////////////////////////////// // CZTestDoc diagnostics #ifdef _DEBUG void CZTestDoc::AssertValid() const { CDocument::AssertValid(); } void CZTestDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CZTestDoc commands