##// END OF EJS Templates
Added core wrapper meson build def...
Added core wrapper meson build def Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r75:41273d8529cd
r80:0c2e5a797af5
Show More
MultiComponentTimeSerie.h
25 lines | 676 B | text/x-c | CLexer
/ include / Data / MultiComponentTimeSerie.h
#ifndef SCIQLOP_MULTICOMPONENTTIMESERIE_H
#define SCIQLOP_MULTICOMPONENTTIMESERIE_H
#include "CoreGlobal.h"
#include <TimeSeries.h>
class SCIQLOP_CORE_EXPORT MultiComponentTimeSerie
: public TimeSeries::TimeSerie<double, MultiComponentTimeSerie, 2>
{
public:
using item_t =
decltype(std::declval<
TimeSeries::TimeSerie<double, MultiComponentTimeSerie, 2>>()[0]);
using iterator_t = decltype(
std::declval<TimeSeries::TimeSerie<double, MultiComponentTimeSerie, 2>>()
.begin());
MultiComponentTimeSerie() {}
~MultiComponentTimeSerie() = default;
using TimeSerie::TimeSerie;
};
#endif // SCIQLOP_MULTICOMPONENTTIMESERIE_H