commdoc.cpp

来自「一个好用的串口通信库(Pcomm)的编程实现」· C++ 代码 · 共 82 行

CPP
82
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?