XDADoc.cpp
资源名称:XuXian.rar [点击查看]
上传用户:toomm12
上传日期:2022-04-29
资源大小:1871k
文件大小:2k
源码类别:
2D图形编程
开发平台:
Visual C++
- // XDADoc.cpp : implementation of the CXDADoc class
- //
- #include "stdafx.h"
- #include "XDA.h"
- #include "XDADoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CXDADoc
- IMPLEMENT_DYNCREATE(CXDADoc, CDocument)
- BEGIN_MESSAGE_MAP(CXDADoc, CDocument)
- //{{AFX_MSG_MAP(CXDADoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CXDADoc construction/destruction
- CXDADoc::CXDADoc()
- {
- // TODO: add one-time construction code here
- x1=1,x2=521,y1=2,y2=252,c=255;;
- }
- CXDADoc::~CXDADoc()
- {
- }
- BOOL CXDADoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CXDADoc serialization
- void CXDADoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CXDADoc diagnostics
- #ifdef _DEBUG
- void CXDADoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CXDADoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CXDADoc commands