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