2020-09-30 16:53:55 +02:00

26 lines
515 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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