summaryrefslogtreecommitdiff
path: root/netfs/daemon/daemon.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-02-03 01:47:15 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-03 01:54:12 +0000
commitb6d99e9e74c2f74513855ffac4564b0878a83273 (patch)
treec905a94914a1f1650e5fe67bf5c618bfdb68c9e4 /netfs/daemon/daemon.h
parentAdd missing explicit on install targets (diff)
downloadnetfs-b6d99e9e74c2f74513855ffac4564b0878a83273.tar.bz2
netfs-b6d99e9e74c2f74513855ffac4564b0878a83273.tar.xz
netfs-b6d99e9e74c2f74513855ffac4564b0878a83273.zip
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'netfs/daemon/daemon.h')
-rw-r--r--netfs/daemon/daemon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/netfs/daemon/daemon.h b/netfs/daemon/daemon.h
index 7599388..57e2023 100644
--- a/netfs/daemon/daemon.h
+++ b/netfs/daemon/daemon.h
@@ -4,7 +4,7 @@
#include <Ice/Ice.h>
#include <IceBox/IceBox.h>
#include <daemonConfig.h>
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
#include <visibility.h>
class DLL_PUBLIC NetFSDaemon : public IceBox::Service {
@@ -16,10 +16,10 @@ class DLL_PUBLIC NetFSDaemon : public IceBox::Service {
virtual void stop() override;
protected:
- virtual NetFS::Daemon::ConfigurationPtr ReadConfiguration(const boost::filesystem::path & path) const;
+ virtual NetFS::Daemon::ConfigurationPtr ReadConfiguration(const std::filesystem::path & path) const;
private:
- void LoadConfiguration(const boost::filesystem::path & path);
+ void LoadConfiguration(const std::filesystem::path & path);
Ice::CommunicatorPtr ic;
Ice::ObjectAdapterPtr adapter;