summaryrefslogtreecommitdiff
path: root/project2/xml/sessionXml.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/xml/sessionXml.h')
-rw-r--r--project2/xml/sessionXml.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/xml/sessionXml.h b/project2/xml/sessionXml.h
index 4288d9e..4a03e37 100644
--- a/project2/xml/sessionXml.h
+++ b/project2/xml/sessionXml.h
@@ -3,9 +3,9 @@
#include "sessionContainer.h"
#include "options.h"
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
-class SessionContainerXml : public SessionContainer {
+class DLL_PUBLIC SessionContainerXml : public SessionContainer {
public:
SessionContainerXml();
~SessionContainerXml();
@@ -17,8 +17,8 @@ class SessionContainerXml : public SessionContainer {
private:
// Configurables
- static boost::filesystem::path xmlDir;
- friend class CustomSessionContainerLoaderXml;
+ static std::filesystem::path xmlDir;
+ friend class CustomSessionContainerFactoryXml;
};
#endif