summaryrefslogtreecommitdiff
path: root/src/repoList.h
blob: 2e876c2e32184c44e8274ae54b1591a384ee4933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef GITFS_REPOLIST_H
#define GITFS_REPOLIST_H

#include <Ice/Properties.h>
#include <service.h>

namespace GitFS {
	class RepoList : public NetFS::Service {
	public:
		RepoList(Ice::PropertiesPtr &&);

		NetFS::VolumePrxPtr connect(
				const ::std::string volume, const ::std::string auth, const ::Ice::Current & current) override;

	private:
		const Ice::PropertiesPtr properties;
	};
}

#endif