zhxdoc1.cpp

来自「用于电力工业中数据的采集、显示」· C++ 代码 · 共 72 行

CPP
72
字号
// ZhxDoc1.cpp : implementation file
//

#include "stdafx.h"
#include "ZhxDoc1.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1

IMPLEMENT_DYNCREATE(CZhxDoc1, CDocument)

CZhxDoc1::CZhxDoc1()
{
}

BOOL CZhxDoc1::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
	return TRUE;
}

CZhxDoc1::~CZhxDoc1()
{
}


BEGIN_MESSAGE_MAP(CZhxDoc1, CDocument)
	//{{AFX_MSG_MAP(CZhxDoc1)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 diagnostics

#ifdef _DEBUG
void CZhxDoc1::AssertValid() const
{
	CDocument::AssertValid();
}

void CZhxDoc1::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 serialization

void CZhxDoc1::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 commands

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?