周立功WinCE光盘资料
源代码在线查看: drawgraphdoc.cpp
// DrawGraphDoc.cpp : implementation of the CDrawGraphDoc class
//
#include "stdafx.h"
#include "DrawGraph.h"
#include "DrawGraphDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDrawGraphDoc
IMPLEMENT_DYNCREATE(CDrawGraphDoc, CDocument)
BEGIN_MESSAGE_MAP(CDrawGraphDoc, CDocument)
//{{AFX_MSG_MAP(CDrawGraphDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDrawGraphDoc construction/destruction
CDrawGraphDoc::CDrawGraphDoc()
{
// TODO: add one-time construction code here
}
CDrawGraphDoc::~CDrawGraphDoc()
{
}
BOOL CDrawGraphDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CDrawGraphDoc serialization
void CDrawGraphDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CDrawGraphDoc diagnostics
#ifdef _DEBUG
void CDrawGraphDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CDrawGraphDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDrawGraphDoc commands