www.gusucode.com > VC记录最近打开文件源码程序 > VC记录最近打开文件/MruFileTestDoc.cpp

    // MruFileTestDoc.cpp : implementation of the CMruFileTestDoc class
//

#include "stdafx.h"
#include "MruFileTest.h"

#include "MruFileTestDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMruFileTestDoc

IMPLEMENT_DYNCREATE(CMruFileTestDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CMruFileTestDoc construction/destruction

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

}

CMruFileTestDoc::~CMruFileTestDoc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMruFileTestDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CMruFileTestDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CMruFileTestDoc commands