From 9184ea73941814b95c2768d8bcca8bdb77655891 Mon Sep 17 00:00:00 2001 From: Wim Vriend Date: Sat, 17 Mar 2012 16:15:51 +0000 Subject: Changed Tracker code, so the DLL's are true plug-ins. FaceTrackNoIR will scan the bin folder for FTNoIR_Tracker*.dll and put the names in the combobox. All Trackers have 3 new member-functions (like the filters). git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@104 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb --- FTNoIR_Filter_Base/ftnoir_filter_base.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 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 e7dcd6bc..3d617abc 100644 --- a/FTNoIR_Filter_Base/ftnoir_filter_base.h +++ b/FTNoIR_Filter_Base/ftnoir_filter_base.h @@ -23,9 +23,9 @@ struct IFilter virtual void Initialize() = 0; virtual void FilterHeadPoseData(THeadPoseData *current_camera_position, THeadPoseData *target_camera_position, THeadPoseData *new_camera_position, bool newTarget) = 0; - virtual void getFilterFullName(QString *strToBeFilled) = 0; - virtual void getFilterShortName(QString *strToBeFilled) = 0; - virtual void getFilterDescription(QString *strToBeFilled) = 0; + virtual void getFullName(QString *strToBeFilled) = 0; + virtual void getShortName(QString *strToBeFilled) = 0; + virtual void getDescription(QString *strToBeFilled) = 0; }; // Handle type. In C++ language the interface type is used. @@ -59,9 +59,9 @@ struct IFilterDialog virtual void Release() = 0; // Member required to enable Auto-remove virtual void Initialize(QWidget *parent, IFilterPtr ptr) = 0; - virtual void getFilterFullName(QString *strToBeFilled) = 0; - virtual void getFilterShortName(QString *strToBeFilled) = 0; - virtual void getFilterDescription(QString *strToBeFilled) = 0; + virtual void getFullName(QString *strToBeFilled) = 0; + virtual void getShortName(QString *strToBeFilled) = 0; + virtual void getDescription(QString *strToBeFilled) = 0; virtual void getIcon(QIcon *icon) = 0; }; -- cgit v1.2.3