diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-19 20:18:09 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-19 20:18:09 +0100 |
| commit | 6f6ea556a54f46716877ae44adcd456aec56226e (patch) | |
| tree | c848f5cb174616bf1c174ed600d120f9057f6222 /lib | |
| parent | 6a918f0827a6e8806f77e39e0348b1a2abed71f2 (diff) | |
| download | libs-lbm-6f6ea556a54f46716877ae44adcd456aec56226e.tar.gz | |
Adding random stuff
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/core/c++/lbm.hpp | 2 | ||||
| -rw-r--r-- | lib/core/c++/schema.hpp | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/core/c++/lbm.hpp b/lib/core/c++/lbm.hpp index 39c42af..aff38e9 100644 --- a/lib/core/c++/lbm.hpp +++ b/lib/core/c++/lbm.hpp @@ -1,5 +1,7 @@ #pragma once +#include "schema.hpp" +#include "flatten.hpp" #include "descriptor.hpp" #include "boundary.hpp" #include "converter.hpp" diff --git a/lib/core/c++/schema.hpp b/lib/core/c++/schema.hpp new file mode 100644 index 0000000..0c92ae6 --- /dev/null +++ b/lib/core/c++/schema.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include <forstio/codec/schema.hpp> + +namespace kel { + namespace lbm { + namespace sch { + using namespace saw::schema; + } + } +} |
