You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TwoLaserHead-PushJig/LaiPuLaser/CreaterDeviceParReset.cpp

16 lines
351 B
C++

#include "StdAfx.h"
#include "CreaterDeviceParReset.h"
#include "WorkCmdDeviceParReset.h"
CCreaterDeviceParReset::CCreaterDeviceParReset(const CString &str)
:CCreaterWorkCmd(str)
{
}
CCreaterDeviceParReset::~CCreaterDeviceParReset(void)
{
}
void CCreaterDeviceParReset::Creat()
{
CWorkCmd *pCmd = new CWorkCmdDeviceParReset;
AddCmd(pCmd);
}