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

