// mathDoc.cpp : implementation of the CMathDoc class // #include "stdafx.h" #include "math.h" #include "mathDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMathDoc IMPLEMENT_DYNCREATE(CMathDoc, CDocument) BEGIN_MESSAGE_MAP(CMathDoc, CDocument) //{{AFX_MSG_MAP(CMathDoc) // 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() ///////////////////////////////////////////////////////////////////////////// // CMathDoc construction/destruction CMathDoc::CMathDoc() { // Nothing to do } CMathDoc::~CMathDoc() { // Nothing to do } BOOL CMathDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // (SDI documents will reuse this document) return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CMathDoc serialization void CMathDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // NO storing code needed here } else { // NO loading code needed here } } ///////////////////////////////////////////////////////////////////////////// // CMathDoc diagnostics #ifdef _DEBUG void CMathDoc::AssertValid() const { CDocument::AssertValid(); } void CMathDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CMathDoc commands