From 9040b187a1c4fa380f8a12207b9dd6d04b3a10ac Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 12 Aug 2016 18:00:49 +0200 Subject: all: rename modules s#^opentrack-##. and opentrack -> api Adjust usages. --- opentrack-logic/selected-libraries.cpp | 37 ---------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 opentrack-logic/selected-libraries.cpp (limited to 'opentrack-logic/selected-libraries.cpp') diff --git a/opentrack-logic/selected-libraries.cpp b/opentrack-logic/selected-libraries.cpp deleted file mode 100644 index 4a1a9f09..00000000 --- a/opentrack-logic/selected-libraries.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "selected-libraries.hpp" -#include - -SelectedLibraries::SelectedLibraries(QFrame* frame, dylibptr t, dylibptr p, dylibptr f) : - pTracker(nullptr), - pFilter(nullptr), - pProtocol(nullptr), - correct(false) -{ - pProtocol = make_dylib_instance(p); - - if (!pProtocol) - { - qDebug() << "protocol dylib load failure"; - return; - } - - if(!pProtocol->correct()) - { - qDebug() << "protocol load failure"; - pProtocol = nullptr; - return; - } - - pTracker = make_dylib_instance(t); - pFilter = make_dylib_instance(f); - - if (!pTracker) - { - qDebug() << "tracker dylib load failure"; - return; - } - - pTracker->start_tracker(frame); - - correct = true; -} -- cgit v1.2.3