You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
515 B
26 lines
515 B
#ifndef __MYCMD_H__
|
|
#define __MYCMD_H__
|
|
|
|
#include "cmd.h"
|
|
|
|
class CMyCmd : public CCmd {
|
|
public:
|
|
|
|
CMyCmd();
|
|
~CMyCmd();
|
|
virtual BOOL ProcessToken(LPTSTR lpszToken);
|
|
BOOL GetParam(INT i,LPCTSTR& Locale, LPCTSTR& FileName);
|
|
INT GetSize() {return (INT)m_LocaleList.GetSize();}
|
|
BOOL Do();
|
|
void Help();
|
|
private:
|
|
CStringArray m_LocaleList;
|
|
CStringArray m_FileNameList;
|
|
CString m_TargetFile;
|
|
CString m_SourceFile;
|
|
CString m_SourceLocale;
|
|
|
|
};
|
|
|
|
#endif
|
|
|