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.
24 lines
450 B
C++
24 lines
450 B
C++
4 years ago
|
#include "StdAfx.h"
|
||
|
#include "WorkCmdWorkStart.h"
|
||
|
#include "LogMgr.h"
|
||
|
#include "WorkCmdInvoker.h"
|
||
|
#include "ModuleDeviceMgr.h"
|
||
|
|
||
|
|
||
|
CWorkCmdWorkStart::CWorkCmdWorkStart()
|
||
|
{
|
||
|
}
|
||
|
CWorkCmdWorkStart::~CWorkCmdWorkStart(void)
|
||
|
{
|
||
|
}
|
||
|
bool CWorkCmdWorkStart::Excute()
|
||
|
{
|
||
|
gModuleDeviceMgr.OnWorkStart();
|
||
|
return true;
|
||
|
}
|
||
|
void CWorkCmdWorkStart::WirteLog()
|
||
|
{
|
||
|
CString str = "[WorkCmd]";
|
||
|
str += _T("CWorkCmdWorkStart");
|
||
|
gLogMgr->WriteDebugLog(str);
|
||
|
}
|