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

