summaryrefslogtreecommitdiff
path: root/project2/paramChecker.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-03-03 00:23:57 +0000
committerrandomdan <randomdan@localhost>2011-03-03 00:23:57 +0000
commit3a7461c2f1298338b47e52a7018988bef54fa58d (patch)
tree6855e13473486b2350506772323034840cee8723 /project2/paramChecker.h
parentFix function definitions to match declarations (fixes Doxygen warnings) (diff)
downloadproject2-3a7461c2f1298338b47e52a7018988bef54fa58d.tar.bz2
project2-3a7461c2f1298338b47e52a7018988bef54fa58d.tar.xz
project2-3a7461c2f1298338b47e52a7018988bef54fa58d.zip
Fix inheritance of If
Remove virtual inheritance in many places Strip down the unneeded docs made my doxygen Add beginnings of a docbook
Diffstat (limited to 'project2/paramChecker.h')
-rw-r--r--project2/paramChecker.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/paramChecker.h b/project2/paramChecker.h
index 219396c..465b8e9 100644
--- a/project2/paramChecker.h
+++ b/project2/paramChecker.h
@@ -8,7 +8,8 @@ class ApplicationEngine;
class ParamChecker;
typedef boost::intrusive_ptr<ParamChecker> ParamCheckerPtr;
-class ParamChecker : public virtual SourceObject {
+/// Base class for Project2 compoments that perform tests/checks
+class ParamChecker : public SourceObject {
public:
ParamChecker(const xmlpp::Element * p);
virtual ~ParamChecker();