summaryrefslogtreecommitdiff
path: root/c++/io_codec/rpc.h
blob: 06a5f76bf1a844ec1dd65746b6a253f9357aefc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

namespace saw {
namespace rmt {
struct Network {};
}

template<>
class remote<rmt::Network> {
private:
		std::string addr_str_;
public:
		remote(std::string addr_str);

		conveyor<rpc_client<rmt::Network>> create_client();
};
}