summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-02-17 09:49:54 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-02-17 09:49:54 +0100
commit97d78a6db152d60aa011b81848993e45cb360bde (patch)
tree13ddf9552ae0d49a90d9ede91db472740b7d5e38
parent35635f5514a9f702b5606146bf9ff4494030ff8f (diff)
tools: Dangling changes
-rw-r--r--modules/tools/c++/c_gen_iface.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/tools/c++/c_gen_iface.hpp b/modules/tools/c++/c_gen_iface.hpp
index ceb6fef..b55816c 100644
--- a/modules/tools/c++/c_gen_iface.hpp
+++ b/modules/tools/c++/c_gen_iface.hpp
@@ -483,5 +483,19 @@ error_or<void> generate_c_interface(data<schema::CIface>& state){
auto eov = c_data_translater<Interface>::generate(state);
return eov;
}
+/*
+namespace lang {
+struct C {};
+}
+
+template<typename Iface, typename T>
+class binding;
+template<typename Iface>
+class binding<Iface, lang::C> {
+public:
+ static constexpr string_literal header;
+ static constexpr string_literal source;
+};
+*/
}