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

