summaryrefslogtreecommitdiff
path: root/modules/lang/c++/c_language.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lang/c++/c_language.hpp')
-rw-r--r--modules/lang/c++/c_language.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/lang/c++/c_language.hpp b/modules/lang/c++/c_language.hpp
new file mode 100644
index 0000000..c4b1d48
--- /dev/null
+++ b/modules/lang/c++/c_language.hpp
@@ -0,0 +1,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>();
+ }
+};
+
+}