aboutsummaryrefslogtreecommitdiff
path: root/examples/apiwrapper.fbs
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-09-15 11:21:31 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-09-15 11:21:31 +0200
commit0cbfbe129934976359460fdbe69fb97632d81d24 (patch)
tree3d4685fc1f02244c80d4f5de2fa6c80fae94a425 /examples/apiwrapper.fbs
parent37d1e657e5e79bc240ea036cfb8da377b1640490 (diff)
Added C++ (`ksocket/ksocket.hpp`) Socket wrapper classes.
* another flatbuffers example (WiP!) * Makefile improvements Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/apiwrapper.fbs')
-rw-r--r--examples/apiwrapper.fbs6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/apiwrapper.fbs b/examples/apiwrapper.fbs
new file mode 100644
index 0000000..6de1330
--- /dev/null
+++ b/examples/apiwrapper.fbs
@@ -0,0 +1,6 @@
+table FunctionAddresses {
+ names:[string];
+ addrs:[uint64];
+}
+
+root_type FunctionAddresses;