Reactos
at master 25 lines 881 B view raw
1// 2// ShellCommandDeleteValue.h: interface for the CShellCommandDeleteValue class. 3// 4////////////////////////////////////////////////////////////////////// 5 6#if !defined(SHELLCOMMANDDELETEVALUE_H__15DEA2A5_7B3A_11D4_A081_90F9DC5EBD0F__INCLUDED_) 7#define SHELLCOMMANDDELETEVALUE_H__15DEA2A5_7B3A_11D4_A081_90F9DC5EBD0F__INCLUDED_ 8 9#include "ShellCommand.h" 10#include "RegistryTree.h" 11 12class CShellCommandDeleteValue : public CShellCommand 13{ 14public: 15 CShellCommandDeleteValue(CRegistryTree& rTree); 16 virtual ~CShellCommandDeleteValue(); 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(); 21private: 22 CRegistryTree& m_rTree; 23}; 24 25#endif // !defined(SHELLCOMMANDDELETEVALUE_H__15DEA2A5_7B3A_11D4_A081_90F9DC5EBD0F__INCLUDED_)