From 51b50882d2906b83c5275c732a56ff333ae6696f Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 24 Jun 2024 15:23:51 +0200 Subject: Working on rpc translation --- modules/tools/c++/c_rpc_gen_iface.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/tools/c++/c_rpc_gen_iface.hpp (limited to 'modules') diff --git a/modules/tools/c++/c_rpc_gen_iface.hpp b/modules/tools/c++/c_rpc_gen_iface.hpp new file mode 100644 index 0000000..a4d0a6f --- /dev/null +++ b/modules/tools/c++/c_rpc_gen_iface.hpp @@ -0,0 +1,22 @@ +#pragma once + +namespace saw { +namespace binding { +/** + * Language Binding for RPC Interfaces + */ +struct RpcC {}; +} + +namespace impl { +template +struct lang_bind, binding::RpcC> { + using Schema = schema::Primitive; + + static error_or generate(const language_binding_conf& cfg, language_binding_state& state){ + + return make_error(); + } +}; +} +} -- cgit v1.2.3