书上找到的
源代码在线查看: 毕业设计数字逻辑电子仿真器doc.cpp
软件大小: |
296 K |
上传用户: |
struggle10000 |
|
|
关键词: |
|
下载地址: |
免注册下载 普通下载
|
|
// 毕业设计数字逻辑电子仿真器Doc.cpp : implementation of the CMyDoc class
//
#include "stdafx.h"
#include "毕业设计数字逻辑电子仿真器.h"
#include "毕业设计数字逻辑电子仿真器Doc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyDoc
IMPLEMENT_DYNCREATE(CMyDoc, CDocument)
BEGIN_MESSAGE_MAP(CMyDoc, CDocument)
//{{AFX_MSG_MAP(CMyDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyDoc construction/destruction
CMyDoc::CMyDoc()
{
// TODO: add one-time construction code here
}
CMyDoc::~CMyDoc()
{
}
BOOL CMyDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMyDoc serialization
void CMyDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CMyDoc diagnostics
#ifdef _DEBUG
void CMyDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CMyDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMyDoc commands
|
相关资源 |
|
-
书上找到的
-
书上找到的
-
这是本人在书上找到的项目,是一个网络聊天的程序.
-
从书上找到的汉诺塔问题的源程序,发上来和大家共享下.
-
编程实现des加密头文件,本人没有调试,但是是从书上找到的源码,应该有人需要吧.
-
C++的温度控制系统,是本人在其它网站上找到的,还没有试过
-
一个简单而使用的CD播放器,是从书上看来的.与大家分享
-
简单的DELPHI的绘图程序,可以画出不同的各种已知图形,书上看的.与大家分享
|