#pragma once #include "descriptor.hpp" namespace kel { namespace lbm { namespace cmpt { /** * Maybe for the future */ 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; static constexpr bool skip_sync = SkipSync; }; /** * Maybe for the future */ template class access_tuple { public: }; } /** * Component class which forms the basis of each processing step */ template class component {}; } }