summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp')
-rw-r--r--FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp b/FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp
index c9867f1b..4e644446 100644
--- a/FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp
+++ b/FTNoIR_Filter_EWMA2/ftnoir_filter_ewma_dll.cpp
@@ -34,10 +34,6 @@
#include <QDebug>
FTNoIR_FilterDll::FTNoIR_FilterDll() {
- //populate the description strings
- filterFullName = "EWMA Filter Mk2";
- filterShortName = "EWMA";
- filterDescription = "Exponentially Weighted Moving Average filter with dynamic smoothing parameter";
}
FTNoIR_FilterDll::~FTNoIR_FilterDll()
@@ -45,36 +41,6 @@ FTNoIR_FilterDll::~FTNoIR_FilterDll()
}
-void FTNoIR_FilterDll::Release()
-{
- delete this;
-}
-
-void FTNoIR_FilterDll::Initialize()
-{
- return;
-}
-
-void FTNoIR_FilterDll::getFullName(QString *strToBeFilled)
-{
- *strToBeFilled = filterFullName;
-};
-
-void FTNoIR_FilterDll::getShortName(QString *strToBeFilled)
-{
- *strToBeFilled = filterShortName;
-};
-
-void FTNoIR_FilterDll::getDescription(QString *strToBeFilled)
-{
- *strToBeFilled = filterDescription;
-};
-
-void FTNoIR_FilterDll::getIcon(QIcon *icon)
-{
- *icon = QIcon(":/images/filter-16.png");
-};
-
////////////////////////////////////////////////////////////////////////////////
// Factory function that creates instances if the Filter object.