summaryrefslogtreecommitdiff
path: root/project2/files/optionsSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/files/optionsSource.h')
-rw-r--r--project2/files/optionsSource.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/project2/files/optionsSource.h b/project2/files/optionsSource.h
index 337f6b2..121b3f3 100644
--- a/project2/files/optionsSource.h
+++ b/project2/files/optionsSource.h
@@ -3,7 +3,7 @@
#include "../common/optionsSource.h"
#include "../common/options.h"
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
#include <visibility.h>
class FileOptions;
@@ -11,14 +11,14 @@ typedef std::shared_ptr<FileOptions> FileOptionsPtr;
class DLL_PUBLIC FileOptions : public OptionsSource {
public:
- FileOptions(const boost::filesystem::path & file);
+ FileOptions(const std::filesystem::path & file);
void loadInto(const ConfigConsumer & consume, const Options::CurrentPlatform & platform) const override;
boost::posix_time::ptime modifiedTime() const override;
INITOPTIONS;
private:
- const boost::filesystem::path file;
+ const std::filesystem::path file;
typedef std::map<std::string, FileOptionsPtr> ExtraFileOptions;
static ExtraFileOptions extraFileOptions;