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

