WindowsXP-SP1/windows/feime/fe/infcat/cmd.h
2020-09-30 16:53:49 +02:00

25 lines
401 B
C++

#ifndef __CMD_H__
#define __CMD_H__
class CCmd : public CObject {
public:
CCmd();
~CCmd();
BOOL bInit();
BOOL bInit(int argc, char* argv[]);
virtual BOOL ProcessToken(LPSTR lpszStr)=0;
private:
//
// member function
//
BOOL ParseCmdLine();
//
// member data
//
int m_argc;
char** m_argv;
};
#endif