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

