diff options
author | randomdan <randomdan@localhost> | 2011-08-31 21:48:04 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-08-31 21:48:04 +0000 |
commit | 05b8bed896e5fe8c1841869e5d6e8e837e72c10a (patch) | |
tree | 77abf662b898321a61058fb0a0da603e336bcad9 /project2/paramChecker.h | |
parent | Adds RDBMS table caching solution (diff) | |
download | project2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.tar.bz2 project2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.tar.xz project2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.zip |
The big reshuffle
Diffstat (limited to 'project2/paramChecker.h')
-rw-r--r-- | project2/paramChecker.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/project2/paramChecker.h b/project2/paramChecker.h deleted file mode 100644 index d013fc4..0000000 --- a/project2/paramChecker.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef PARAMCHECKER_H -#define PARAMCHECKER_H - -#include <libxml/tree.h> -#include "sourceObject.h" -#include "variables.h" - -/// Base class for Project2 compoments that perform tests/checks -class ParamChecker : public SourceObject { - public: - ParamChecker(const xmlpp::Element * p); - virtual ~ParamChecker(); - - virtual bool performCheck() const = 0; - - const Variable message; - const Variable group; - const std::string present; -}; -typedef boost::intrusive_ptr<const ParamChecker> ParamCheckerCPtr; - -#endif - - |