summaryrefslogtreecommitdiff
path: root/src/repoList.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-08-22 15:26:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2020-08-22 15:26:11 +0100
commitf759884235b4594c4f960ea0c587697eef717665 (patch)
tree92f3b95e99fac6688a6d9cec88b6553cb77f0c60 /src/repoList.h
parentUpdate to new NetFS interface (diff)
downloadnetfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.tar.bz2
netfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.tar.xz
netfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.zip
Clang-format
Diffstat (limited to 'src/repoList.h')
-rw-r--r--src/repoList.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/repoList.h b/src/repoList.h
index 0c2ed4b..2e876c2 100644
--- a/src/repoList.h
+++ b/src/repoList.h
@@ -1,20 +1,20 @@
#ifndef GITFS_REPOLIST_H
#define GITFS_REPOLIST_H
-#include <service.h>
#include <Ice/Properties.h>
+#include <service.h>
namespace GitFS {
class RepoList : public NetFS::Service {
- public:
- RepoList(Ice::PropertiesPtr &&);
+ public:
+ RepoList(Ice::PropertiesPtr &&);
- NetFS::VolumePrxPtr connect(const ::std::string volume, const ::std::string auth, const ::Ice::Current& current) override;
+ NetFS::VolumePrxPtr connect(
+ const ::std::string volume, const ::std::string auth, const ::Ice::Current & current) override;
- private:
- const Ice::PropertiesPtr properties;
+ private:
+ const Ice::PropertiesPtr properties;
};
}
#endif
-