blob: db3c97e81c996fc70d83dae334d69227279b0b14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include "c_helper.hpp"
#include "c_transfer.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_transfer(const config& cfg){
return make_error<err::not_implemented>();
}
error_or<void> generate_rpc(const config& cfg){
return make_error<err::not_implemented>();
}
};
}
|