blob: d021f2b5f88d99a3c482d64adf4d356a5f39c27c (
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::VolumePrx connect(const std::string &, const ::std::string &, const Ice::Current &) override;
};
}
#endif
|