mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Hooks: Removed obsolete methods
This commit is contained in:
parent
54fac39f85
commit
08d5db0b49
2 changed files with 3 additions and 9 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue