summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Filter_Base
diff options
context:
space:
mode:
authorWim Vriend <facetracknoir@gmail.com>2012-01-15 16:56:28 +0000
committerWim Vriend <facetracknoir@gmail.com>2012-01-15 16:56:28 +0000
commit671a0a2fb81830b364d708a3f6123e44f88042cf (patch)
tree36331bc575835e513bbc772fa112534a5c28c72d /FTNoIR_Filter_Base
parentd6086d8203ae4f4b45f3d97960788d603fc78e16 (diff)
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
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.