diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-26 14:06:16 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-26 14:06:16 +0200 |
commit | 4244c69184602efff78b77ea72a5da44b650b4ad (patch) | |
tree | 249cddb3d9877faf582cac48b790eb1eb3fd1575 /modules/tools/c++/lang_bind | |
parent | 3ad1f9e4147cf64627793d4003b50039d86ce995 (diff) |
reworks preparing for rpc translation
Diffstat (limited to 'modules/tools/c++/lang_bind')
-rw-r--r-- | modules/tools/c++/lang_bind/c_rpc.hpp | 7 | ||||
-rw-r--r-- | modules/tools/c++/lang_bind/c_rpc_base.hpp | 7 | ||||
-rw-r--r-- | modules/tools/c++/lang_bind/c_rpc_headers.hpp | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/modules/tools/c++/lang_bind/c_rpc.hpp b/modules/tools/c++/lang_bind/c_rpc.hpp new file mode 100644 index 0000000..75c2f7c --- /dev/null +++ b/modules/tools/c++/lang_bind/c_rpc.hpp @@ -0,0 +1,7 @@ +#pragma once + +#include "c_rpc_types.hpp" + +namespace saw { + +} diff --git a/modules/tools/c++/lang_bind/c_rpc_base.hpp b/modules/tools/c++/lang_bind/c_rpc_base.hpp new file mode 100644 index 0000000..cddae54 --- /dev/null +++ b/modules/tools/c++/lang_bind/c_rpc_base.hpp @@ -0,0 +1,7 @@ +#pragma once + +namespace saw { +namespace lang { +struct RpcC {}; +} +} diff --git a/modules/tools/c++/lang_bind/c_rpc_headers.hpp b/modules/tools/c++/lang_bind/c_rpc_headers.hpp new file mode 100644 index 0000000..931eb2c --- /dev/null +++ b/modules/tools/c++/lang_bind/c_rpc_headers.hpp @@ -0,0 +1,7 @@ +#pragma once + +#include "c_rpc_base.hpp" + +namespace saw { + +} |