mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Code Cleanup - TDB removal
- TDB removed from all code, but source kept for further reference.
This commit is contained in:
parent
fc7b344a8b
commit
9776495286
13 changed files with 71 additions and 89 deletions
|
@ -31,7 +31,6 @@
|
|||
#include <sys/types.h>
|
||||
#include "Context.h"
|
||||
#include "T.h"
|
||||
#include "TDB.h"
|
||||
#include "Table.h"
|
||||
#include "Date.h"
|
||||
#include "color.h"
|
||||
|
@ -49,18 +48,20 @@ bool isCustomReport (const std::string&);
|
|||
void allCustomReports (std::vector <std::string>&);
|
||||
|
||||
// task.cpp
|
||||
void gatherNextTasks (const TDB&, T&, std::vector <T>&, std::vector <int>&);
|
||||
void gatherNextTasks (/*const TDB&,*/ T&, std::vector <T>&, std::vector <int>&);
|
||||
void onChangeCallback ();
|
||||
/*
|
||||
std::string runTaskCommand (int, char**, TDB&, bool gc = true, bool shadow = true);
|
||||
std::string runTaskCommand (std::vector <std::string>&, TDB&, bool gc = false, bool shadow = false);
|
||||
*/
|
||||
|
||||
// recur.cpp
|
||||
void handleRecurrence ();
|
||||
Date getNextRecurrence (Date&, std::string&);
|
||||
bool generateDueDates (T&, std::vector <Date>&);
|
||||
void updateRecurrenceMask (TDB&, std::vector <T>&, T&);
|
||||
void updateRecurrenceMask (/*TDB&,*/ std::vector <T>&, T&);
|
||||
int getDueState (const std::string&);
|
||||
void nag (TDB&, T&);
|
||||
void nag (/*TDB&,*/ T&);
|
||||
|
||||
// command.cpp
|
||||
std::string handleAdd ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue