4class __declspec(dllexport) QuantityDescriptionCurve :
public QuantityDescription
7 QuantityDescriptionCurve()
9 m_metadataQuantity.dataDimensions.push_back(1);
12 void setDataPoints(std::list<ot::Variable> _dataPoints)
14 m_dataPoints = std::vector<ot::Variable>{ _dataPoints.begin(), _dataPoints.end() };
17 void reserveDatapointSize(uint64_t _size)
19 m_dataPoints.reserve(_size);
24 m_dataPoints.push_back(_variable);
29 m_dataPoints.push_back(std::move(_variable));
31 const std::vector<ot::Variable>& getDataPoints()
const
37 std::vector<ot::Variable> m_dataPoints;
Definition Variable.h:107