// Doc2.cpp : implementation file // #include "stdafx.h" #include "KBEditors.h" #include "Doc2.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CDoc2 IMPLEMENT_DYNCREATE(CDoc2, CDocument) CDoc2::CDoc2() { } BOOL CDoc2::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; return TRUE; } CDoc2::~CDoc2() { } BEGIN_MESSAGE_MAP(CDoc2, CDocument) //{{AFX_MSG_MAP(CDoc2) // NOTE - the ClassWizard will add and remove mapping macros here. //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CDoc2 diagnostics #ifdef _DEBUG void CDoc2::AssertValid() const { CDocument::AssertValid(); } void CDoc2::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CDoc2 serialization void CDoc2::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here } } ///////////////////////////////////////////////////////////////////////////// // CDoc2 commands