mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Code Cleanup
- Obsoleted Filter.{h,cpp}. - Obsoleted Sequence.{h,cpp}. - Eliminated Context::autoFilter. - Stubbed Expression::eval.
This commit is contained in:
parent
6b85669812
commit
f971fcd110
28 changed files with 148 additions and 616 deletions
|
@ -32,7 +32,6 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
#include <Location.h>
|
||||
#include <Filter.h>
|
||||
#include <Task.h>
|
||||
|
||||
// Length of longest line.
|
||||
|
@ -53,9 +52,9 @@ public:
|
|||
void lock (bool lockFile = true);
|
||||
void unlock ();
|
||||
|
||||
int load (std::vector <Task>&, Filter&);
|
||||
int loadPending (std::vector <Task>&, Filter&);
|
||||
int loadCompleted (std::vector <Task>&, Filter&);
|
||||
int load (std::vector <Task>&);
|
||||
int loadPending (std::vector <Task>&);
|
||||
int loadCompleted (std::vector <Task>&);
|
||||
|
||||
const std::vector <Task>& getAllPending ();
|
||||
const std::vector <Task>& getAllNew ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue