Registry Explorer (console tool) by Nedko Arnaoudov added to the system utilities...
[reactos.git] / rosapps / sysutils / regexpl / ShellCommandHelp.h
1 // ShellCommandHelp.h: interface for the CShellCommandHelp class.
2 //
3 //////////////////////////////////////////////////////////////////////
4
5 #if !defined(SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)
6 #define SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_
7
8 #include "ShellCommand.h"
9 #include "ShellCommandsLinkedList.h"
10
11 class CShellCommandHelp : public CShellCommand
12 {
13 public:
14 CShellCommandHelp(CShellCommandsLinkedList& rCommandsLinkedList);
15 virtual ~CShellCommandHelp();
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 private:
21 CShellCommandsLinkedList& m_rCommandsLinkedList;
22 };
23
24 #endif // !defined(SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)