📄 intersectiondoc.cpp
字号:
// IntersectionDoc.cpp : implementation of the CIntersectionDoc class
//
#include "stdafx.h"
#include "Intersection.h"
#include "IntersectionDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CIntersectionDoc
IMPLEMENT_DYNCREATE(CIntersectionDoc, CDocument)
BEGIN_MESSAGE_MAP(CIntersectionDoc, CDocument)
END_MESSAGE_MAP()
// CIntersectionDoc construction/destruction
CIntersectionDoc::CIntersectionDoc()
{
// TODO: add one-time construction code here
}
CIntersectionDoc::~CIntersectionDoc()
{
}
BOOL CIntersectionDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
// CIntersectionDoc serialization
void CIntersectionDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
// CIntersectionDoc diagnostics
#ifdef _DEBUG
void CIntersectionDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CIntersectionDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
// CIntersectionDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -