bsdoc.cpp
来自「本文介绍了数字图像处理与模式识别在交通的应用领域及其重要意义」· C++ 代码 · 共 85 行
CPP
85 行
// bsDoc.cpp : implementation of the CBsDoc class
//
#include "stdafx.h"
#include "bs.h"
#include "bsDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBsDoc
IMPLEMENT_DYNCREATE(CBsDoc, CDocument)
BEGIN_MESSAGE_MAP(CBsDoc, CDocument)
//{{AFX_MSG_MAP(CBsDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CBsDoc construction/destruction
CBsDoc::CBsDoc()
{
// TODO: add one-time construction code here
}
CBsDoc::~CBsDoc()
{
}
BOOL CBsDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CBsDoc serialization
void CBsDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CBsDoc diagnostics
#ifdef _DEBUG
void CBsDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CBsDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CBsDoc commands
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?