summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Filter_Base
diff options
context:
space:
mode:
Diffstat (limited to 'FTNoIR_Filter_Base')
-rw-r--r--FTNoIR_Filter_Base/ftnoir_filter_base.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/FTNoIR_Filter_Base/ftnoir_filter_base.h b/FTNoIR_Filter_Base/ftnoir_filter_base.h
index 8e949553..e7dcd6bc 100644
--- a/FTNoIR_Filter_Base/ftnoir_filter_base.h
+++ b/FTNoIR_Filter_Base/ftnoir_filter_base.h
@@ -26,9 +26,6 @@ struct IFilter
virtual void getFilterFullName(QString *strToBeFilled) = 0;
virtual void getFilterShortName(QString *strToBeFilled) = 0;
virtual void getFilterDescription(QString *strToBeFilled) = 0;
-
- //parameter value get/set - returns true if successful, false if not
- virtual bool setParameterValue(const int index, const float newvalue) = 0;
};
// Handle type. In C++ language the interface type is used.
@@ -65,6 +62,7 @@ struct IFilterDialog
virtual void getFilterFullName(QString *strToBeFilled) = 0;
virtual void getFilterShortName(QString *strToBeFilled) = 0;
virtual void getFilterDescription(QString *strToBeFilled) = 0;
+ virtual void getIcon(QIcon *icon) = 0;
};
// Handle type. In C++ language the interface type is used.