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

