summaryrefslogtreecommitdiff
path: root/src/repoList.h
blob: ac8b885c7aba07b56e32272128d805b2e7a6df9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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