summaryrefslogtreecommitdiff
path: root/src/repoList.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/repoList.h')
-rw-r--r--src/repoList.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/repoList.h b/src/repoList.h
new file mode 100644
index 0000000..ac8b885
--- /dev/null
+++ b/src/repoList.h
@@ -0,0 +1,17 @@
+#ifndef GITFS_REPOLIST_H
+#define GITFS_REPOLIST_H
+
+#include <service.h>
+#include <Ice/Properties.h>
+
+namespace GitFS {
+ class RepoList : public NetFS::Service {
+ public:
+ RepoList(const Ice::PropertiesPtr & ptr);
+
+ virtual NetFS::VolumePrxPtr connect(const ::std::string volume, const ::std::string auth, const ::Ice::Current& current) override;
+ };
+}
+
+#endif
+