?? cantordoc.cpp
字號:
// cantorDoc.cpp : CcantorDoc 類的實現
//
#include "stdafx.h"
#include "cantor.h"
#include "cantorDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CcantorDoc
IMPLEMENT_DYNCREATE(CcantorDoc, CDocument)
BEGIN_MESSAGE_MAP(CcantorDoc, CDocument)
END_MESSAGE_MAP()
// CcantorDoc 構造/析構
CcantorDoc::CcantorDoc()
{
// TODO: 在此添加一次性構造代碼
}
CcantorDoc::~CcantorDoc()
{
}
BOOL CcantorDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: 在此添加重新初始化代碼
// (SDI 文檔將重用該文檔)
return TRUE;
}
// CcantorDoc 序列化
void CcantorDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: 在此添加存儲代碼
}
else
{
// TODO: 在此添加加載代碼
}
}
// CcantorDoc 診斷
#ifdef _DEBUG
void CcantorDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CcantorDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
// CcantorDoc 命令
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -