Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include "Time/Triggers/NearTimes.hpp" 7 : #include "Time/Triggers/OnSubsteps.hpp" 8 : #include "Time/Triggers/SlabCompares.hpp" 9 : #include "Time/Triggers/Slabs.hpp" 10 : #include "Time/Triggers/StepsWithinSlab.hpp" 11 : #include "Time/Triggers/TimeCompares.hpp" 12 : #include "Time/Triggers/Times.hpp" 13 : #include "Utilities/TMPL.hpp" 14 : 15 : namespace Triggers { 16 : /// \ingroup EventsAndTriggersGroup 17 : /// Typelist of Time triggers 18 1 : using time_triggers = tmpl::list<NearTimes, OnSubsteps, SlabCompares, Slabs, 19 : StepsWithinSlab, TimeCompares, Times>; 20 : } // namespace Triggers