summaryrefslogtreecommitdiff
path: root/project2/xml/sessionXml.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-12-02 17:03:50 +0000
committerrandomdan <randomdan@localhost>2011-12-02 17:03:50 +0000
commitf0e9e42607ac4cfa935185c9cd1983889645266e (patch)
tree1ec9119b70881a01dd2f6389bc08a818292b6bd9 /project2/xml/sessionXml.h
parentRemove no longer required type handlers (diff)
downloadproject2-f0e9e42607ac4cfa935185c9cd1983889645266e.tar.bz2
project2-f0e9e42607ac4cfa935185c9cd1983889645266e.tar.xz
project2-f0e9e42607ac4cfa935185c9cd1983889645266e.zip
Add component events for process begin and before request
Store XML sessions in a single folder, one file per session, not one big file
Diffstat (limited to 'project2/xml/sessionXml.h')
-rw-r--r--project2/xml/sessionXml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/xml/sessionXml.h b/project2/xml/sessionXml.h
index 2679bff..0ce502a 100644
--- a/project2/xml/sessionXml.h
+++ b/project2/xml/sessionXml.h
@@ -2,7 +2,7 @@
#define SESSIONXML_H
#include "sessionContainer.h"
-#include <map>
+#include <boost/filesystem/path.hpp>
class SessionContainerXml : public SessionContainer {
public:
@@ -15,7 +15,7 @@ class SessionContainerXml : public SessionContainer {
private:
// Configurables
- static std::string xmlFile;
+ static boost::filesystem::path xmlDir;
friend class CustomSessionContainerLoaderXml;
};