##// END OF EJS Templates
Some refac for new PySide2 bindings...
Some refac for new PySide2 bindings - made DataSourceItem iterable - added some tree print function for debug - fixed minor bug on DataSourceContorller which prevented from adding products in more than one call per provider - improved IDataProvider for future refac Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r60:1d5bfa8fd429
r92:9ff5f48e3d71
Show More
VectorTimeSerie.h
22 lines | 394 B | text/x-c | CLexer
Added new TS classes and tiny cleanup...
r60 #ifndef SCIQLOP_VECTORTIMESERIE_H
#define SCIQLOP_VECTORTIMESERIE_H
#include "CoreGlobal.h"
#include <TimeSeries.h>
struct Vector
{
double x, y, z;
};
class SCIQLOP_CORE_EXPORT VectorTimeSerie
: public TimeSeries::TimeSerie<Vector, VectorTimeSerie>
{
public:
VectorTimeSerie() {}
~VectorTimeSerie() = default;
using TimeSerie::TimeSerie;
};
#endif // SCIQLOP_VECTORTIMESERIE_H