Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include <array> 7 : #include <cstddef> 8 : 9 : #include "DataStructures/DataBox/Tag.hpp" 10 : #include "Domain/Amr/Flag.hpp" 11 : 12 1 : namespace amr::Tags { 13 : /// amr::Flag%s for an Element. 14 : template <size_t VolumeDim> 15 1 : struct Flags : db::SimpleTag { 16 0 : using type = std::array<amr::Flag, VolumeDim>; 17 : }; 18 : 19 : } // namespace amr::Tags