summaryrefslogtreecommitdiff
path: root/project2/paramChecker.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-08-31 21:48:04 +0000
committerrandomdan <randomdan@localhost>2011-08-31 21:48:04 +0000
commit05b8bed896e5fe8c1841869e5d6e8e837e72c10a (patch)
tree77abf662b898321a61058fb0a0da603e336bcad9 /project2/paramChecker.h
parentAdds RDBMS table caching solution (diff)
downloadproject2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.tar.bz2
project2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.tar.xz
project2-05b8bed896e5fe8c1841869e5d6e8e837e72c10a.zip
The big reshuffle
Diffstat (limited to 'project2/paramChecker.h')
-rw-r--r--project2/paramChecker.h24
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
-
-