mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 10:07:19 +02:00
Hooks: Removed obsolete methods
This commit is contained in:
parent
54fac39f85
commit
08d5db0b49
2 changed files with 3 additions and 9 deletions
|
@ -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