diff options
author | randomdan <randomdan@localhost> | 2011-07-31 17:18:04 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-07-31 17:18:04 +0000 |
commit | bc7dd387a54958b11d4bc894841e183cb255171a (patch) | |
tree | 8e88f7142e5699d4bf31e74a8c323ce8c534c7fe /project2/sessionXml.h | |
parent | Strip out some useless wrappers (diff) | |
download | project2-bc7dd387a54958b11d4bc894841e183cb255171a.tar.bz2 project2-bc7dd387a54958b11d4bc894841e183cb255171a.tar.xz project2-bc7dd387a54958b11d4bc894841e183cb255171a.zip |
Allow all plugable components to have settings injected into them
Add settings to SendMailTask and SessionXML
Diffstat (limited to 'project2/sessionXml.h')
-rw-r--r-- | project2/sessionXml.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/project2/sessionXml.h b/project2/sessionXml.h index d8bc8aa..9b5c3e1 100644 --- a/project2/sessionXml.h +++ b/project2/sessionXml.h @@ -14,6 +14,11 @@ class SessionContainerXml : public SessionContainer { SessionPtr getSession(UUID & sid); typedef boost::intrusive_ptr<SessionXml> SessionXmlPtr; SessionXmlPtr currentSession; + + private: + // Configurables + static std::string xmlFile; + friend class CustomSessionContainerLoaderXml; }; #endif |