- Updated DOM to use Variant ovjects, which carry a type which improves
  expression evaluation.
This commit is contained in:
Paul Beckingham 2014-06-11 21:53:00 -04:00
parent e8474fc145
commit 456b982ced
5 changed files with 76 additions and 73 deletions

View file

@ -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:
};