blob: c4b1d48000758bcbaccf842ad581df488b900921 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "c_transfer.hpp"
#include "c_helper.hpp"
#include "c_rpc.hpp"
namespace saw {
template<typename Iface, typename Encoding>
class language<Iface, Encoding, lang::RemoteC> {
public:
struct config {
std::string prefix;
};
public:
error_or<void> generate_rpc(const config& cfg){
return make_error<err::not_implemented>();
}
};
}
|