#pragma once #include "component.hpp" namespace kel { namespace lbm { namespace cmpt { struct Stream {}; } template class component final { private: public: static constexpr saw::string_literal name = "streaming"; static constexpr saw::string_literal after = "collide"; static constexpr saw::string_literal before = ""; template void apply(const saw::data& field, const saw::data>& index, saw::data time_step) const { } }; } }