6
0
mirror of https://github.com/JKornev/hidden synced 2024-06-20 14:08:05 +00:00
hidden/HiddenCLI/State.h
2016-12-23 23:31:31 +03:00

24 lines
505 B
C++

#pragma once
#include "Commands.h"
class CommandState : public ICommand
{
const wchar_t* m_command = nullptr;
bool m_state;
public:
CommandState();
virtual ~CommandState();
virtual bool CompareCommand(std::wstring& command);
virtual void LoadArgs(Arguments& args, CommandModeType mode);
virtual void PerformCommand(Connection& connection);
virtual void InstallCommand(RegistryKey& configKey);
virtual void UninstallCommand(RegistryKey& configKey);
virtual CommandPtr CreateInstance();
};