WindowsXP-SP1/windows/feime/fe/infcat/cmd.h

25 lines
401 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
#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