##// END OF EJS Templates
Some work on the catalog classes wrapper...
Some work on the catalog classes wrapper Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r66:e718ad47d2bc
r82:39bf3ff40b41
Show More
SpectrogramTimeSerie.h
25 lines | 649 B | text/x-c | CLexer
/ include / Data / SpectrogramTimeSerie.h
More work on new Variable python bindings...
r63 #ifndef SCIQLOP_SPECTROGRAMTIMESERIE_H
#define SCIQLOP_SPECTROGRAMTIMESERIE_H
#include "CoreGlobal.h"
#include <TimeSeries.h>
class SCIQLOP_CORE_EXPORT SpectrogramTimeSerie
: public TimeSeries::TimeSerie<double, SpectrogramTimeSerie, 2>
{
public:
New TimeSeries classes mostly usable from Python...
r65 using item_t =
Spectrogram wrapper allow to set values from python...
r66 decltype(std::declval<
TimeSeries::TimeSerie<double, SpectrogramTimeSerie, 2>>()[0]);
using iterator_t = decltype(
std::declval<TimeSeries::TimeSerie<double, SpectrogramTimeSerie, 2>>()
.begin());
More work on new Variable python bindings...
r63 SpectrogramTimeSerie() {}
~SpectrogramTimeSerie() = default;
using TimeSerie::TimeSerie;
};
#endif // SCIQLOP_SPECTROGRAMTIMESERIE_H