##// END OF EJS Templates
Removed CMake scripts :)
Removed CMake scripts :)

File last commit:

r60:1d5bfa8fd429
r93:63c6ae3895dd
Show More
ScalarTimeSerie.h
17 lines | 353 B | text/x-c | CLexer
Added new TS classes and tiny cleanup...
r60 #ifndef SCIQLOP_SCALARTIMESERIE_H
#define SCIQLOP_SCALARTIMESERIE_H
#include "CoreGlobal.h"
#include <TimeSeries.h>
class SCIQLOP_CORE_EXPORT ScalarTimeSerie
: public TimeSeries::TimeSerie<double, ScalarTimeSerie>
{
public:
ScalarTimeSerie() {}
~ScalarTimeSerie() = default;
using TimeSerie::TimeSerie;
};
#endif // SCIQLOP_SCALARSERIES_H