diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
commit | 5a166a02efe011931faa7a9ff9fe4043e3a8017a (patch) | |
tree | bdb7432e95f451bfacad651e26b44aaea1917a08 /c++ | |
parent | 9e37ff62b668694f705a8d132469f40ead9f6f0f (diff) |
Upgrading the cavity example
Diffstat (limited to 'c++')
-rw-r--r-- | c++/component.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/c++/component.hpp b/c++/component.hpp index c67387b..87ac31c 100644 --- a/c++/component.hpp +++ b/c++/component.hpp @@ -6,6 +6,10 @@ namespace kel { namespace lbm { namespace cmpt { + +/** + * Maybe for the future + */ template<saw::string_literal Name, uint64_t Dist, bool Read, bool Write, bool SkipSync = false> class access { public: @@ -16,6 +20,9 @@ public: static constexpr bool skip_sync = SkipSync; }; +/** + * Maybe for the future + */ template<typename... Acc> class access_tuple { public: @@ -23,7 +30,7 @@ public: } /** - * Compponent class which forms the basis of the + * Component class which forms the basis of each processing step */ template<typename T, typename Descriptor, typename Cmpt> class component {}; |