📄 erroranaly.cpp
字号:
// ErrorAnalyzeDoc.cpp : implementation of the CErrorAnalyzeDoc class
//
#include "stdafx.h"
#include "ErrorAnalyze.h"
#include "ErrorAnalyzeDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CErrorAnalyzeDoc
IMPLEMENT_DYNCREATE(CErrorAnalyzeDoc, CDocument)
BEGIN_MESSAGE_MAP(CErrorAnalyzeDoc, CDocument)
//{{AFX_MSG_MAP(CErrorAnalyzeDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CErrorAnalyzeDoc construction/destruction
CErrorAnalyzeDoc::CErrorAnalyzeDoc()
{
// TODO: add one-time construction code here
}
CErrorAnalyzeDoc::~CErrorAnalyzeDoc()
{
}
BOOL CErrorAnalyzeDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CErrorAnalyzeDoc serialization
void CErrorAnalyzeDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CErrorAnalyzeDoc diagnostics
#ifdef _DEBUG
void CErrorAnalyzeDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CErrorAnalyzeDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CErrorAnalyzeDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -