diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-07 19:06:43 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-07 19:06:43 +0000 |
commit | 115f6dd6e6bd7be6173effec94a4b48289328d70 (patch) | |
tree | 6f21e91216f6db2f5875635b66737b69761f4a48 /project2/xml/sessionXml.h | |
parent | GCC-8.2 and libadhocutil-0.6 compat fixes (diff) | |
download | project2-115f6dd6e6bd7be6173effec94a4b48289328d70.tar.bz2 project2-115f6dd6e6bd7be6173effec94a4b48289328d70.tar.xz project2-115f6dd6e6bd7be6173effec94a4b48289328d70.zip |
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'project2/xml/sessionXml.h')
-rw-r--r-- | project2/xml/sessionXml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/xml/sessionXml.h b/project2/xml/sessionXml.h index dd194fe..4a03e37 100644 --- a/project2/xml/sessionXml.h +++ b/project2/xml/sessionXml.h @@ -3,7 +3,7 @@ #include "sessionContainer.h" #include "options.h" -#include <boost/filesystem/path.hpp> +#include <filesystem> class DLL_PUBLIC SessionContainerXml : public SessionContainer { public: @@ -17,7 +17,7 @@ class DLL_PUBLIC SessionContainerXml : public SessionContainer { private: // Configurables - static boost::filesystem::path xmlDir; + static std::filesystem::path xmlDir; friend class CustomSessionContainerFactoryXml; }; |