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