@@ -45,6 +45,7 public: | |||||
45 |
|
45 | |||
46 |
|
46 | |||
47 | std::shared_ptr<Variable> variable(int index) const; |
|
47 | std::shared_ptr<Variable> variable(int index) const; | |
|
48 | std::vector<std::shared_ptr<Variable> > variables() const; | |||
48 |
|
49 | |||
49 | void setDataProgress(std::shared_ptr<Variable> variable, double progress); |
|
50 | void setDataProgress(std::shared_ptr<Variable> variable, double progress); | |
50 |
|
51 |
@@ -114,6 +114,11 std::shared_ptr<Variable> VariableModel::variable(int index) const | |||||
114 | return (index >= 0 && index < impl->m_Variables.size()) ? impl->m_Variables[index] : nullptr; |
|
114 | return (index >= 0 && index < impl->m_Variables.size()) ? impl->m_Variables[index] : nullptr; | |
115 | } |
|
115 | } | |
116 |
|
116 | |||
|
117 | std::vector<std::shared_ptr<Variable> > VariableModel::variables() const | |||
|
118 | { | |||
|
119 | return impl->m_Variables; | |||
|
120 | } | |||
|
121 | ||||
117 | void VariableModel::setDataProgress(std::shared_ptr<Variable> variable, double progress) |
|
122 | void VariableModel::setDataProgress(std::shared_ptr<Variable> variable, double progress) | |
118 | { |
|
123 | { | |
119 | if (progress > 0.0) { |
|
124 | if (progress > 0.0) { |
General Comments 0
You need to be logged in to leave comments.
Login now