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.
|
#pragma once
|
|
#include "workcmd.h"
|
|
|
|
//ÏûÏ¢ÌáʾָÁî
|
|
class CWorkCmdMsg :public CWorkCmd
|
|
{
|
|
public:
|
|
CWorkCmdMsg(CString s);
|
|
~CWorkCmdMsg(void);
|
|
virtual bool Excute();
|
|
virtual void WirteLog();
|
|
private:
|
|
CString m_msg;//ÌáʾÄÚÈÝ
|
|
};
|
|
|