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