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