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

