summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ftnoir_tracker_ht/ftnoir_tracker_ht.cpp')
-rw-r--r--ftnoir_tracker_ht/ftnoir_tracker_ht.cpp18
1 files changed, 2 insertions, 16 deletions
diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp
index 577ae40d..86992911 100644
--- a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp
+++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp
@@ -1,7 +1,6 @@
#include "stdafx.h"
#include "headtracker-ftnoir.h"
#include "ftnoir_tracker_ht.h"
-#include "ftnoir_tracker_ht_dll.h"
#include "ui_ht-trackercontrols.h"
#include "opentrack/plugin-api.hpp"
#include <cmath>
@@ -182,21 +181,6 @@ void Tracker::data(double* data)
}
}
-extern "C" OPENTRACK_EXPORT Metadata* GetMetadata()
-{
- return new TrackerDll;
-}
-
-extern "C" OPENTRACK_EXPORT ITracker* GetConstructor()
-{
- return new Tracker;
-}
-
-extern "C" OPENTRACK_EXPORT ITrackerDialog* GetDialog( )
-{
- return new TrackerControls;
-}
-
TrackerControls::TrackerControls() : tracker(nullptr)
{
ui.setupUi(this);
@@ -235,3 +219,5 @@ void TrackerControls::camera_settings()
else
open_camera_settings(nullptr, s.camera_name, nullptr);
}
+
+OPENTRACK_DECLARE_TRACKER(Tracker, TrackerControls, TrackerDll)