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.
20 lines
399 B
C++
20 lines
399 B
C++
#pragma once
|
|
#include "WorkCmd.h"
|
|
#include "WorkCmdContainer.h"
|
|
|
|
//指令创建的工厂方法接口
|
|
class CCreaterWorkCmd
|
|
{
|
|
public:
|
|
CCreaterWorkCmd(const CString &str);
|
|
virtual ~CCreaterWorkCmd(void);
|
|
virtual void Creat(){};
|
|
protected:
|
|
CString GetPar(int idx);
|
|
void AddCmd(CWorkCmd *p);
|
|
void CollectWorkData(bool bNeedSel);
|
|
protected:
|
|
const CString m_CreatStr;//命令行
|
|
};
|
|
|