diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-09 17:26:56 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-09 17:26:56 +0200 |
commit | 4be22d527ef286e30975e4ff3d5e2165bc42fb78 (patch) | |
tree | 7061b5124fa8f716bbc41fbf6dddb76b20bcec94 | |
parent | cd3bb23161ab12763f74c596348f348ef36f353d (diff) |
Bringing component based structure into this simulation
-rw-r--r-- | c++/component.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/c++/component.hpp b/c++/component.hpp new file mode 100644 index 0000000..08be2f5 --- /dev/null +++ b/c++/component.hpp @@ -0,0 +1,9 @@ +#pragma once + +namespace kel { +namespace lbm { + +template<typename T> +class component {}; +} +} |