Added default ctor for MovingMedianTS

This commit is contained in:
MBulli
2020-04-08 15:28:06 +02:00
parent 462ba1199c
commit 2f1698c4cc

View File

@@ -37,6 +37,11 @@ private:
public: public:
/** default ctor with zero window-size */
MovingMedianTS() : window(Timestamp::fromMS(0)) {
}
/** ctor with the window-size to use */ /** ctor with the window-size to use */
MovingMedianTS(const Timestamp window) : window(window) { MovingMedianTS(const Timestamp window) : window(window) {