summaryrefslogtreecommitdiff
path: root/project2/paramChecker.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
commit8e965240abf25b9d33231d35d23c3c98c50f5616 (patch)
treea674036788ea48c5485f0382ae02e6e778c6a92d /project2/paramChecker.h
parentReturn HTTP 500 on error (diff)
downloadproject2-8e965240abf25b9d33231d35d23c3c98c50f5616.tar.bz2
project2-8e965240abf25b9d33231d35d23c3c98c50f5616.tar.xz
project2-8e965240abf25b9d33231d35d23c3c98c50f5616.zip
Remove the stupid _ naming convention
Diffstat (limited to 'project2/paramChecker.h')
-rw-r--r--project2/paramChecker.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/project2/paramChecker.h b/project2/paramChecker.h
index d2ccbfc..7d14346 100644
--- a/project2/paramChecker.h
+++ b/project2/paramChecker.h
@@ -9,15 +9,15 @@
#include "variables.h"
class ApplicationEngine;
-class _ParamChecker;
-typedef boost::intrusive_ptr<_ParamChecker> ParamChecker;
-typedef std::map<std::string, ParamChecker> ParamCheckers;
-typedef std::map<unsigned int, ParamChecker> OrderedParamCheckers;
+class ParamChecker;
+typedef boost::intrusive_ptr<ParamChecker> ParamCheckerPtr;
+typedef std::map<std::string, ParamCheckerPtr> ParamCheckers;
+typedef std::map<unsigned int, ParamCheckerPtr> OrderedParamCheckers;
-class _ParamChecker : public virtual _SourceObject {
+class ParamChecker : public virtual SourceObject {
public:
- _ParamChecker(const xmlpp::Element * p);
- virtual ~_ParamChecker();
+ ParamChecker(const xmlpp::Element * p);
+ virtual ~ParamChecker();
virtual bool performCheck() const = 0;