From 4ffcce338176350465dbd4245ad443b766d196f0 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Thu, 3 Apr 2025 15:55:22 +0200 Subject: wip --- c++/component.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'c++/component.hpp') diff --git a/c++/component.hpp b/c++/component.hpp index 08be2f5..14f908a 100644 --- a/c++/component.hpp +++ b/c++/component.hpp @@ -1,8 +1,29 @@ #pragma once +#include "descriptor.hpp" + namespace kel { namespace lbm { +namespace cmpt { +template +class access { +public: + static constexpr saw::string_literal name = Name; + static constexpr uint64_t distance = Dist; + static constexpr bool read = Read; + static constexpr bool write = Write; +}; + +template +class access_tuple { +public: +}; +} + +/** + * Compponent class which forms the basis of the + */ template class component {}; } -- cgit v1.2.3