gongzidoc.cpp
来自「VC++6.0编译的一个小的工资管理系统。这是源代码。所要的积分」· C++ 代码 · 共 71 行
CPP
71 行
// gongziDoc.cpp : implementation of the CGongziDoc class
//
#include "stdafx.h"
#include "gongzi.h"
#include "gongziSet.h"
#include "gongziDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGongziDoc
IMPLEMENT_DYNCREATE(CGongziDoc, CDocument)
BEGIN_MESSAGE_MAP(CGongziDoc, CDocument)
//{{AFX_MSG_MAP(CGongziDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CGongziDoc construction/destruction
CGongziDoc::CGongziDoc()
{
// TODO: add one-time construction code here
}
CGongziDoc::~CGongziDoc()
{
}
BOOL CGongziDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CGongziDoc diagnostics
#ifdef _DEBUG
void CGongziDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CGongziDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CGongziDoc commands
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?