summaryrefslogtreecommitdiff
path: root/project2/sqlCheck.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
commitd6cebc3fbc456d8d5553ae8cf689acec7e59cf6f (patch)
tree6855e13473486b2350506772323034840cee8723 /project2/sqlCheck.h
parentFix function definitions to match declarations (fixes Doxygen warnings) (diff)
downloadproject2-d6cebc3fbc456d8d5553ae8cf689acec7e59cf6f.tar.bz2
project2-d6cebc3fbc456d8d5553ae8cf689acec7e59cf6f.tar.xz
project2-d6cebc3fbc456d8d5553ae8cf689acec7e59cf6f.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/sqlCheck.h')
-rw-r--r--project2/sqlCheck.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/sqlCheck.h b/project2/sqlCheck.h
index 8557dce..1f2937f 100644
--- a/project2/sqlCheck.h
+++ b/project2/sqlCheck.h
@@ -6,7 +6,8 @@
namespace DB { class SelectCommand; }
-class SqlCheck : public IHaveParameters, public ParamChecker {
+/// Project2 component to check the value of a variable against an RDBMS data source
+class SqlCheck : IHaveParameters, public ParamChecker {
public:
SqlCheck(const xmlpp::Element * p);
virtual ~SqlCheck();