blob: 758cc9bf16a47525b0c8c290e07640e13e3d1f0b (
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 <visibility.h>
#include <service.h>
namespace MythFS {
class Service : public ::NetFS::Service {
public:
::NetFS::VolumePrxPtr connect(const std::string, const ::std::string, const Ice::Current &) override;
};
}
#endif
|