Incorporate rosapps. 0.3.15 was branched somewhat incorrectly so rosapps is not synce...
[reactos.git] / modules / rosapps / applications / sysutils / regexpl / ShellCommandValue.h
1 //
2 // ShellCommandValue.h: interface for the CShellCommandValue class.
3 //
4 //////////////////////////////////////////////////////////////////////
5
6 #if !defined(SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)
7 #define SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_
8
9 #include "ShellCommand.h"
10 #include "RegistryTree.h"
11
12 class CShellCommandValue : public CShellCommand
13 {
14 public:
15 CShellCommandValue(CRegistryTree& rTree);
16 virtual ~CShellCommandValue();
17 virtual BOOL Match(const TCHAR *pchCommand);
18 virtual int Execute(CConsole &rConsole, CArgumentParser& rArguments);
19 virtual const TCHAR * GetHelpString();
20 virtual const TCHAR * GetHelpShortDescriptionString();
21 private:
22 CRegistryTree& m_rTree;
23 };
24
25 #endif // !defined(SHELLCOMMANDVALUE_H__848A2507_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)