summaryrefslogtreecommitdiffhomepage
path: root/opentrack/selected-libraries.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'opentrack/selected-libraries.hpp')
-rw-r--r--opentrack/selected-libraries.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/opentrack/selected-libraries.hpp b/opentrack/selected-libraries.hpp
new file mode 100644
index 00000000..ffaf882c
--- /dev/null
+++ b/opentrack/selected-libraries.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "opentrack/plugin-support.hpp"
+#include <QFrame>
+
+struct SelectedLibraries {
+ using dylibptr = mem<dylib>;
+ mem<ITracker> pTracker;
+ mem<IFilter> pFilter;
+ mem<IProtocol> pProtocol;
+ SelectedLibraries(QFrame* frame, dylibptr t, dylibptr p, dylibptr f);
+ SelectedLibraries() : pTracker(nullptr), pFilter(nullptr), pProtocol(nullptr), correct(false) {}
+ ~SelectedLibraries();
+ bool correct;
+};