DashedDoc.cpp
上传用户:whjcdz88
上传日期:2011-09-07
资源大小:121k
文件大小:1k
- // DashedDoc.cpp : implementation of the CDashedDoc class
- //
- #include "stdafx.h"
- #include "Dashed.h"
- #include "DashedDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDashedDoc
- IMPLEMENT_DYNCREATE(CDashedDoc, CDocument)
- BEGIN_MESSAGE_MAP(CDashedDoc, CDocument)
- //{{AFX_MSG_MAP(CDashedDoc)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDashedDoc construction/destruction
- CDashedDoc::CDashedDoc()
- {
- }
- CDashedDoc::~CDashedDoc()
- {
- }
- BOOL CDashedDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CDashedDoc serialization
- void CDashedDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- }
- else
- {
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CDashedDoc diagnostics
- #ifdef _DEBUG
- void CDashedDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CDashedDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CDashedDoc commands