diff options
Diffstat (limited to 'netfs/daemon/daemonService.h')
-rw-r--r-- | netfs/daemon/daemonService.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/netfs/daemon/daemonService.h b/netfs/daemon/daemonService.h index 64ae45c..e0f80ef 100644 --- a/netfs/daemon/daemonService.h +++ b/netfs/daemon/daemonService.h @@ -1,23 +1,21 @@ #ifndef DAEMONSERVICE_H #define DAEMONSERVICE_H -#include <service.h> -#include <entCache.h> #include <daemonConfig.h> #include <entCache.h> +#include <service.h> class ServiceServer : public NetFS::Service { - public: - explicit ServiceServer(NetFS::Daemon::ConfigurationPtr c); +public: + explicit ServiceServer(NetFS::Daemon::ConfigurationPtr c); - NetFS::VolumePrxPtr connect(const std::string share, const std::string auth, const Ice::Current&) override; + NetFS::VolumePrxPtr connect(const std::string share, const std::string auth, const Ice::Current &) override; - private: - EntCache<User> userLookup; - EntCache<Group> groupLookup; +private: + EntCache<User> userLookup; + EntCache<Group> groupLookup; - NetFS::Daemon::ConfigurationPtr config; + NetFS::Daemon::ConfigurationPtr config; }; #endif - |