blob: 9dab8b5d4f120859e42802f368808985e0d668ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef GITFS_REPOLIST_H
#define GITFS_REPOLIST_H
#include <Ice/Properties.h>
#include <service.h>
#include <string>
#include <volume.h>
namespace Ice {
struct Current;
}
namespace GitFS {
class RepoList : public NetFS::Service {
public:
explicit RepoList(Ice::PropertiesPtr);
NetFS::VolumePrxPtr connect(::std::string volume, ::std::string auth, const ::Ice::Current & ice) override;
NetFS::SettingsPtr getSettings(const ::Ice::Current & ice) override;
private:
const Ice::PropertiesPtr properties;
};
}
#endif
|