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

