1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #include "stdafx.h"
- #include "mfc1.h"
- #include "mfc1Doc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- IMPLEMENT_DYNCREATE(Cmfc1Doc, CDocument)
- BEGIN_MESSAGE_MAP(Cmfc1Doc, CDocument)
- END_MESSAGE_MAP()
- Cmfc1Doc::Cmfc1Doc()
- {
-
- }
- Cmfc1Doc::~Cmfc1Doc()
- {
- }
- BOOL Cmfc1Doc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
-
-
- return TRUE;
- }
- void Cmfc1Doc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring()) {
-
- } else {
-
- }
- }
- #ifdef _DEBUG
- void Cmfc1Doc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void Cmfc1Doc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif
|