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

