mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
DOM
- Updated DOM to use Variant ovjects, which carry a type which improves expression evaluation.
This commit is contained in:
parent
e8474fc145
commit
456b982ced
5 changed files with 76 additions and 73 deletions
|
@ -28,6 +28,7 @@
|
|||
#define INCLUDED_DOM
|
||||
|
||||
#include <string>
|
||||
#include <Variant.h>
|
||||
#include <Task.h>
|
||||
#include <time.h>
|
||||
|
||||
|
@ -38,9 +39,9 @@ public:
|
|||
~DOM ();
|
||||
|
||||
const std::vector <std::string> get_references () const;
|
||||
bool get (const std::string&, std::string&);
|
||||
bool get (const std::string&, const Task&, std::string&);
|
||||
void set (const std::string&, const std::string&);
|
||||
bool get (const std::string&, Variant&);
|
||||
bool get (const std::string&, const Task&, Variant&);
|
||||
void set (const std::string&, const Variant&);
|
||||
|
||||
private:
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue