⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commdoc.cpp

📁 一个好用的串口通信库(Pcomm)的编程实现
💻 CPP
字号:
// CommDoc.cpp : implementation of the CCommDoc class
//

#include "stdafx.h"
#include "Comm.h"

#include "CommDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCommDoc

IMPLEMENT_DYNCREATE(CCommDoc, CDocument)

BEGIN_MESSAGE_MAP(CCommDoc, CDocument)
	//{{AFX_MSG_MAP(CCommDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CCommDoc construction/destruction

CCommDoc::CCommDoc()
{
	// TODO: add one-time construction code here
  DataBuffer.SetSize(120);
}

CCommDoc::~CCommDoc()
{
}

BOOL CCommDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
    //for(int i=0;i<120;i++)
	//	DataBuffer[i]=30;
	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)
	//CString s;
	//s.Format("%d",DataBuffer[6]);
	//AfxMessageBox(s);
    this->SetModifiedFlag();
	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CCommDoc serialization

void CCommDoc::Serialize(CArchive& ar)
{
	DataBuffer.Serialize(ar);
}

/////////////////////////////////////////////////////////////////////////////
// CCommDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CCommDoc commands

⌨️ 快捷键说明

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