Визуальное программирование и MFC

       

MultiDoc.cpp


// multiDoc.cpp : implementation of the CMultiDoc class //

#include "stdafx.h" #include "multi.h"

#include "multiDoc.h"

#ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif

///////////////////////////////////////////////////////////////////////////// // CMultiDoc

IMPLEMENT_DYNCREATE(CMultiDoc, CDocument)

BEGIN_MESSAGE_MAP(CMultiDoc, CDocument) //{{AFX_MSG_MAP(CMultiDoc) // 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()

///////////////////////////////////////////////////////////////////////////// // CMultiDoc construction/destruction

CMultiDoc::CMultiDoc() { // TODO: add one-time construction code here

}

CMultiDoc::~CMultiDoc() { }

BOOL CMultiDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE;

// TODO: add reinitialization code here // (SDI documents will reuse this document)

return TRUE; }

///////////////////////////////////////////////////////////////////////////// // CMultiDoc serialization

void CMultiDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here } }

///////////////////////////////////////////////////////////////////////////// // CMultiDoc diagnostics

#ifdef _DEBUG void CMultiDoc::AssertValid() const { CDocument::AssertValid(); }

void CMultiDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG

///////////////////////////////////////////////////////////////////////////// // CMultiDoc commands



Содержание раздела