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