www.pudn.com > MiniFox.rar > MiniFoxDoc.cpp


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