##// END OF EJS Templates
Add code of ProvideNotInCacheRange in VC controller
Add code of ProvideNotInCacheRange in VC controller

File last commit:

r425:b8af3b4730c2
r500:22771cedba86
Show More
ScalarSeries.h
25 lines | 755 B | text/x-c | CLexer
Alexandre Leroux
Creates scalar series
r118 #ifndef SCIQLOP_SCALARSERIES_H
#define SCIQLOP_SCALARSERIES_H
Alexandre Leroux
Exports core module as a shared library...
r425 #include "CoreGlobal.h"
Alexandre Leroux
Creates scalar series
r118 #include <Data/DataSeries.h>
/**
* @brief The ScalarSeries class is the implementation for a data series representing a scalar.
*/
Alexandre Leroux
Exports core module as a shared library...
r425 class SCIQLOP_CORE_EXPORT ScalarSeries : public DataSeries<1> {
Alexandre Leroux
Creates scalar series
r118 public:
Alexandre Leroux
Creates constructor for ScalarSeries that directly takes vectors...
r361 /**
* Ctor with two vectors. The vectors must have the same size, otherwise a ScalarSeries with no
* values will be created.
* @param xAxisData x-axis data
* @param valuesData values data
*/
explicit ScalarSeries(QVector<double> xAxisData, QVector<double> valuesData,
const Unit &xAxisUnit, const Unit &valuesUnit);
Alexandre Leroux
Use std::shared_ptr in CosinusProvider
r287 std::unique_ptr<IDataSeries> clone() const;
Alexandre Leroux
Creates scalar series
r118 };
#endif // SCIQLOP_SCALARSERIES_H