📄 receivedata.cpp
字号:
// ReceiveData.cpp: implementation of the CReceiveData class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//#include "mctmis.h"
#include "ReceiveData.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CReceiveData::CReceiveData()
{
// m_Ctyle = TRUE;
}
CReceiveData::~CReceiveData()
{
}
void CReceiveData::ProcessReceving()
{
BYTE n_temp = 0;
int i = 0;
m_HexDataReceive.RemoveAll();
while (i < 65)
{
n_temp = m_Receve->GetAt( i+2 );
m_HexDataReceive.Add(n_temp);
i++;
}
}
BOOL CReceiveData::GetByte(BYTE &n_Byte)
{
return FALSE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -