Registry Explorer (console tool) by Nedko Arnaoudov added to the system utilities...
[reactos.git] / rosapps / sysutils / regexpl / ShellCommandSACL.h
1 // ShellCommandSACL.h: interface for the CShellCommandSACL class.
2 //
3 //////////////////////////////////////////////////////////////////////
4
5 #if !defined(SHELLCOMMANDSACL_H__848A250A_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)
6 #define SHELLCOMMANDSACL_H__848A250A_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_
7
8 #include "ShellCommand.h"
9 #include "RegistryTree.h"
10
11 class CShellCommandSACL : public CShellCommand
12 {
13 public:
14 CShellCommandSACL(CRegistryTree& rTree);
15 virtual ~CShellCommandSACL();
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(SHELLCOMMANDSACL_H__848A250A_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)