diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2012-09-13 17:07:07 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2012-09-13 17:07:07 +0000 |
commit | df690e02ea1bdfa06e735fd1da3a94fdee93714a (patch) | |
tree | a04fa53ea5d7d421fdedd684bf0b8e676840c2ba /FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp | |
parent | c26901009a23c3b7df5197b3b326cb14d12e0d7f (diff) |
Class TrackerDll added, to get info about the Tracker
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@129 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp')
-rw-r--r-- | FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp b/FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp index a0c0ebce..87c01b9c 100644 --- a/FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp +++ b/FTNoIR_Tracker_SM/ftnoir_tracker_faceapi_dialog.cpp @@ -56,11 +56,6 @@ QWidget() QMessageBox::warning(0,"FaceTrackNoIR Error","Memory mapping not created!",QMessageBox::Ok,QMessageBox::NoButton);
}
- //populate the description strings
- trackerFullName = "faceAPI V3.2.6";
- trackerShortName = "faceAPI";
- trackerDescription = "SeeingMachines faceAPI V3.2.6";
-
// Load the settings from the current .INI-file
loadSettings();
@@ -79,11 +74,6 @@ TrackerControls::~TrackerControls() { qDebug() << "~TrackerControls() says: started";
}
-void TrackerControls::Release()
-{
- delete this;
-}
-
//
// Initialize tracker-client-dialog
//
@@ -142,29 +132,6 @@ void TrackerControls::doCancel() { }
}
-
-void TrackerControls::getFullName(QString *strToBeFilled)
-{
- *strToBeFilled = trackerFullName;
-};
-
-
-void TrackerControls::getShortName(QString *strToBeFilled)
-{
- *strToBeFilled = trackerShortName;
-};
-
-
-void TrackerControls::getDescription(QString *strToBeFilled)
-{
- *strToBeFilled = trackerDescription;
-};
-
-void TrackerControls::getIcon(QIcon *icon)
-{
- *icon = QIcon(":/images/SeeingMachines.ico");
-};
-
//
// Load the current Settings from the currently 'active' INI-file.
//
|