summaryrefslogtreecommitdiff
path: root/project2/paramChecker.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-06-28 18:08:51 +0000
committerrandomdan <randomdan@localhost>2010-06-28 18:08:51 +0000
commit910b44e64023f707496a097b9b0b289b8bb061fd (patch)
tree06d007f68f0e5fa056907cb337795dbd3c3cccfc /project2/paramChecker.h
parentUse cgicc, add checks, tasks, dynamic loader, atom feed, login page (diff)
downloadproject2-910b44e64023f707496a097b9b0b289b8bb061fd.tar.bz2
project2-910b44e64023f707496a097b9b0b289b8bb061fd.tar.xz
project2-910b44e64023f707496a097b9b0b289b8bb061fd.zip
Use FCgiIO C++ wrapper
Add iterates Change some inheritances Add a numeric load order loader Add support for sessions Add support for a SHM session backend Lots of other little changes
Diffstat (limited to 'project2/paramChecker.h')
-rw-r--r--project2/paramChecker.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/project2/paramChecker.h b/project2/paramChecker.h
index 28c0275..1ffe89f 100644
--- a/project2/paramChecker.h
+++ b/project2/paramChecker.h
@@ -13,7 +13,7 @@ typedef boost::shared_ptr<_ParamChecker> ParamChecker;
typedef std::map<std::string, ParamChecker> ParamCheckers;
typedef std::map<unsigned int, ParamChecker> OrderedParamCheckers;
-class _ParamChecker : public _Project2SourceObject {
+class _ParamChecker : public virtual _SourceObject {
public:
_ParamChecker(const xmlpp::Element * p);
virtual ~_ParamChecker();
@@ -23,11 +23,8 @@ class _ParamChecker : public _Project2SourceObject {
const Glib::ustring message;
const std::string applyTo;
const std::string present;
- const unsigned int order;
static void AddLoaders(Loaders & l, OrderedParamCheckers & vs);
- private:
- static unsigned int loadOrder;
};
#endif