23 namespace Antares::ModelerStudy::SystemModel
30 enum class TimeDependent : bool
36 enum class ScenarioDependent : bool
43 inline T fromBool(
bool in);
46 inline TimeDependent fromBool(
bool in)
48 return in ? TimeDependent::YES : TimeDependent::NO;
52 inline ScenarioDependent fromBool(
bool in)
54 return in ? ScenarioDependent::YES : ScenarioDependent::NO;