增加CNC运行测试
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#include "stdafx.h"
|
||||
#include "CSO7_CMD.h"
|
||||
|
||||
//========================
|
||||
CSO7_CMD::CSO7_CMD()
|
||||
{
|
||||
Init();
|
||||
}
|
||||
//========================
|
||||
CSO7_CMD::CSO7_CMD(const CSO7_CMD& _CMD)
|
||||
{
|
||||
m_ID=_CMD.m_ID;
|
||||
|
||||
}
|
||||
//========================
|
||||
CSO7_CMD& CSO7_CMD::operator=(const CSO7_CMD& _CMD)
|
||||
{
|
||||
m_ID=_CMD.m_ID;
|
||||
return *this;
|
||||
}
|
||||
//========================
|
||||
void CSO7_CMD::Init()
|
||||
{
|
||||
m_ID=0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user