Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include <cstddef> 7 : 8 : #include "DataStructures/DataBox/Tag.hpp" 9 : 10 : /// \cond 11 : namespace amr { 12 : template <size_t VolumeDim> 13 : struct Info; 14 : } // namespace amr 15 : /// \endcond 16 : 17 1 : namespace amr::Tags { 18 : /// amr::Info for an Element. 19 : template <size_t VolumeDim> 20 1 : struct Info : db::SimpleTag { 21 0 : using type = amr::Info<VolumeDim>; 22 : }; 23 : 24 : } // namespace amr::Tags