Code Cleanup

- Merging Record and Task objects, step 2.
This commit is contained in:
Paul Beckingham 2011-08-07 16:28:40 -04:00
parent 6d00337db3
commit 33cfdec5a6
4 changed files with 105 additions and 104 deletions

View file

@ -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);