1 //
2 // ShellCommandVersion.h: interface for the CShellCommandVersion class.
3 //
4 //////////////////////////////////////////////////////////////////////
5 
6 #if !defined(SHELLCOMMANDVERSION_H__D29C1196_5942_11D4_A037_C5AC8D00940F__INCLUDED_)
7 #define SHELLCOMMANDVERSION_H__D29C1196_5942_11D4_A037_C5AC8D00940F__INCLUDED_
8 
9 #include "ShellCommand.h"
10 
11 class CShellCommandVersion : public CShellCommand
12 {
13 public:
14 	CShellCommandVersion();
15 	virtual ~CShellCommandVersion();
16 	virtual BOOL Match(const TCHAR *pchCommand);
17 	virtual int Execute(CConsole &rConsole, CArgumentParser& rArguments);
18 	virtual const TCHAR * GetHelpString();
19 	virtual const TCHAR * GetHelpShortDescriptionString();
20 };
21 
22 #endif // !defined(SHELLCOMMANDVERSION_H__D29C1196_5942_11D4_A037_C5AC8D00940F__INCLUDED_)
23