summaryrefslogtreecommitdiff
path: root/project2/sessionXml.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-07-29 23:56:27 +0000
committerrandomdan <randomdan@localhost>2011-07-29 23:56:27 +0000
commit510c77d0eaa1cda885541463bdce249b65f95bbf (patch)
tree80d9a3643102b77f972e1fd1d15713274c441df0 /project2/sessionXml.h
parentWork around old compiler bug by fully qualifying function call to not get mix... (diff)
downloadproject2-510c77d0eaa1cda885541463bdce249b65f95bbf.tar.bz2
project2-510c77d0eaa1cda885541463bdce249b65f95bbf.tar.xz
project2-510c77d0eaa1cda885541463bdce249b65f95bbf.zip
Strip out some useless wrappers
Add support for plugable session containers
Diffstat (limited to 'project2/sessionXml.h')
-rw-r--r--project2/sessionXml.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/project2/sessionXml.h b/project2/sessionXml.h
index 8086990..d8bc8aa 100644
--- a/project2/sessionXml.h
+++ b/project2/sessionXml.h
@@ -4,15 +4,16 @@
#include "sessionContainer.h"
#include <map>
+class SessionXml;
class SessionContainerXml : public SessionContainer {
public:
SessionContainerXml();
~SessionContainerXml();
- void CleanUp();
-
protected:
SessionPtr getSession(UUID & sid);
+ typedef boost::intrusive_ptr<SessionXml> SessionXmlPtr;
+ SessionXmlPtr currentSession;
};
#endif