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 "Domain/Creators/AlignedLattice.hpp" 9 : #include "Domain/Creators/AngularDisk.hpp" 10 : #include "Domain/Creators/Disk.hpp" 11 : #include "Domain/Creators/Factory.hpp" 12 : #include "Domain/Creators/Rectilinear.hpp" 13 : #include "Domain/Creators/RotatedRectangles.hpp" 14 : #include "Utilities/TMPL.hpp" 15 : 16 : namespace DomainCreators_detail { 17 : template <> 18 : struct domain_creators<2> { 19 : using type = tmpl::list<domain::creators::AlignedLattice<2>, 20 : domain::creators::AngularDisk, domain::creators::Disk, 21 : domain::creators::Rectangle, 22 : domain::creators::RotatedRectangles>; 23 : }; 24 : } // namespace DomainCreators_detail