25 #include "timeAndScenarioType.h"
26 #include "valueType.h"
28 namespace Antares::ModelerStudy::SystemModel
40 TimeDependent timeDependent,
41 ScenarioDependent scenarioDependent):
43 timeDependent_(timeDependent),
44 scenarioDependent_(scenarioDependent)
48 const std::string& Id()
const
53 bool isTimeDependent()
const
55 return timeDependent_ == TimeDependent::YES;
58 bool isScenarioDependent()
const
60 return scenarioDependent_ == ScenarioDependent::YES;
65 TimeDependent timeDependent_ = TimeDependent::YES;
66 ScenarioDependent scenarioDependent_ = ScenarioDependent::YES;
Definition: parameter.h:37