Hooks: Removed obsolete methods

This commit is contained in:
Paul Beckingham 2016-01-09 22:38:18 -05:00
parent 54fac39f85
commit 08d5db0b49
2 changed files with 3 additions and 9 deletions

View file

@ -52,11 +52,6 @@ Hooks::Hooks ()
{
}
////////////////////////////////////////////////////////////////////////////////
Hooks::~Hooks ()
{
}
////////////////////////////////////////////////////////////////////////////////
void Hooks::initialize ()
{

View file

@ -34,10 +34,9 @@
class Hooks
{
public:
Hooks (); // Default constructor
~Hooks (); // Destructor
Hooks (const Hooks&); // Deliberately unimplemented
Hooks& operator= (const Hooks&); // Deliberately unimplemented
Hooks ();
Hooks (const Hooks&) = delete;
Hooks& operator= (const Hooks&) = delete;
void initialize ();
bool enable (bool);