##// END OF EJS Templates
Added Y log tag for Spectrograms...
Added Y log tag for Spectrograms Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r60:1d5bfa8fd429
r87:c6cf2dba079d
Show More
VectorTimeSerie.h
22 lines | 394 B | text/x-c | CLexer
#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