diff options
author | randomdan <randomdan@localhost> | 2011-03-03 00:23:57 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-03-03 00:23:57 +0000 |
commit | 3a7461c2f1298338b47e52a7018988bef54fa58d (patch) | |
tree | 6855e13473486b2350506772323034840cee8723 /project2/paramChecker.h | |
parent | Fix function definitions to match declarations (fixes Doxygen warnings) (diff) | |
download | project2-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.h | 3 |
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(); |