summaryrefslogtreecommitdiff
path: root/project2/sqlCheck.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-12-17 23:01:10 +0000
committerrandomdan <randomdan@localhost>2010-12-17 23:01:10 +0000
commita8f7ef5893617d7be4079ef8292ea2a5c4ac7777 (patch)
treea674036788ea48c5485f0382ae02e6e778c6a92d /project2/sqlCheck.h
parentReturn HTTP 500 on error (diff)
downloadproject2-a8f7ef5893617d7be4079ef8292ea2a5c4ac7777.tar.bz2
project2-a8f7ef5893617d7be4079ef8292ea2a5c4ac7777.tar.xz
project2-a8f7ef5893617d7be4079ef8292ea2a5c4ac7777.zip
Remove the stupid _ naming convention
Diffstat (limited to 'project2/sqlCheck.h')
-rw-r--r--project2/sqlCheck.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/project2/sqlCheck.h b/project2/sqlCheck.h
index 40c6e9a..e4f79ee 100644
--- a/project2/sqlCheck.h
+++ b/project2/sqlCheck.h
@@ -6,10 +6,10 @@
namespace ODBC { class SelectCommand; }
-class _SqlCheck : public IHaveParameters, public _ParamChecker {
+class SqlCheck : public IHaveParameters, public ParamChecker {
public:
- _SqlCheck(const xmlpp::Element * p);
- virtual ~_SqlCheck();
+ SqlCheck(const xmlpp::Element * p);
+ virtual ~SqlCheck();
virtual void loadComplete(const CommonObjects *);
bool performCheck() const;
@@ -21,7 +21,5 @@ class _SqlCheck : public IHaveParameters, public _ParamChecker {
private:
ODBC::SelectCommand * query;
};
-typedef boost::intrusive_ptr<_SqlCheck> SqlCheck;
-typedef std::map<std::string, SqlCheck> SqlChecks;
#endif