powerdoc.cpp
来自「实时曲线类的改进增加功能: 1)采样数据存盘和加载 2)演示程序中可以实现图形的」· C++ 代码 · 共 63 行
CPP
63 行
// powerDoc.cpp : implementation of the CPowerDoc class
//
#include "stdafx.h"
#include "power.h"
#include "powerDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPowerDoc
IMPLEMENT_DYNCREATE(CPowerDoc, CDocument)
BEGIN_MESSAGE_MAP(CPowerDoc, CDocument)
//{{AFX_MSG_MAP(CPowerDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CPowerDoc construction/destruction
CPowerDoc::CPowerDoc()
{
// TODO: add one-time construction code here
}
CPowerDoc::~CPowerDoc()
{
}
/////////////////////////////////////////////////////////////////////////////
// CPowerDoc diagnostics
#ifdef _DEBUG
void CPowerDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CPowerDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CPowerDoc commands
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?