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

