Hooks: Removed obsolete methods
This commit is contained in:
@@ -52,11 +52,6 @@ Hooks::Hooks ()
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Hooks::~Hooks ()
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void Hooks::initialize ()
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user