From 671a0a2fb81830b364d708a3f6123e44f88042cf Mon Sep 17 00:00:00 2001 From: Wim Vriend Date: Sun, 15 Jan 2012 16:56:28 +0000 Subject: Finished making the Filter a plug-in and implemented the DZ1 filter. First attempt though... git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@100 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb --- FTNoIR_Filter_Base/ftnoir_filter_base.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'FTNoIR_Filter_Base') 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. -- cgit v1.2.3