fea43a6c689aa1e8718519cf6a65f2a5611b4795
[reactos.git] / rosapps / sysutils / regexpl / ShellCommandValue.h
1 // ShellCommandValue.h: interface for the CShellCommandValue class.
2 //
3 //////////////////////////////////////////////////////////////////////
4
5 #if !defined(SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)
6 #define SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_
7
8 #include "ShellCommand.h"
9 #include "RegistryTree.h"
10
11 class CShellCommandValue : public CShellCommand
12 {
13 public:
14 CShellCommandValue(CRegistryTree& rTree);
15 virtual ~CShellCommandValue();
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 CRegistryTree& m_rTree;
22 };
23
24 #endif // !defined(SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)