mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 06:37:20 +02:00
Code Cleanup
- Merging Record and Task objects, step 2.
This commit is contained in:
parent
6d00337db3
commit
33cfdec5a6
4 changed files with 105 additions and 104 deletions
11
src/Task.h
11
src/Task.h
|
@ -63,6 +63,17 @@ public:
|
|||
void setEnd ();
|
||||
void setStart ();
|
||||
|
||||
bool has (const std::string&) const;
|
||||
std::vector <Att> all ();
|
||||
const std::string get (const std::string&) const;
|
||||
int get_int (const std::string&) const;
|
||||
unsigned long get_ulong (const std::string&) const;
|
||||
time_t get_date (const std::string&) const;
|
||||
time_t get_duration (const std::string&) const;
|
||||
void set (const std::string&, const std::string&);
|
||||
void set (const std::string&, int);
|
||||
void remove (const std::string&);
|
||||
|
||||
status getStatus () const;
|
||||
void setStatus (status);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue