blob: cea818556bd0c1ca39cdf030e78f4e8cbb0743b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef MYTHFS_SERVICE_H
#define MYTHFS_SERVICE_H
#include <service.h>
#include <visibility.h>
namespace MythFS {
class Service : public ::NetFS::Service {
public:
::NetFS::VolumePrxPtr connect(const std::string, const ::std::string, const Ice::Current &) override;
::NetFS::SettingsPtr getSettings(const Ice::Current &) override;
};
}
#endif
|