diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 01:47:15 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 01:54:12 +0000 |
commit | b6d99e9e74c2f74513855ffac4564b0878a83273 (patch) | |
tree | c905a94914a1f1650e5fe67bf5c618bfdb68c9e4 /netfs/daemon/daemon.h | |
parent | Add missing explicit on install targets (diff) | |
download | netfs-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.h | 6 |
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; |