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.
16 lines
351 B
C++
16 lines
351 B
C++
4 years ago
|
#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);
|
||
|
}
|