summaryrefslogtreecommitdiffhomepage
path: root/cv/export.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-10 09:45:00 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-10 10:41:58 +0200
commit5a4c8f61e0ad001a8c462e50117b1fd474d27e6c (patch)
tree1fa353c2d9b01cdf76af27dad261e1867a3c772a /cv/export.hpp
parentc160afe719611b27910d8347ece6e49ee2a3b32f (diff)
cv: move calibrator and video widget to cv module
Adjust usages in PT and Aruco trackers.
Diffstat (limited to 'cv/export.hpp')
-rw-r--r--cv/export.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/cv/export.hpp b/cv/export.hpp
deleted file mode 100644
index 6636e56b..00000000
--- a/cv/export.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-
-#ifdef BUILD_cv
-# ifdef _WIN32
-# define OPENTRACK_CV_LINKAGE __declspec(dllexport)
-# else
-# define OPENTRACK_CV_LINKAGE
-# endif
-
-# ifndef _MSC_VER
-# define OPENTRACK_CV_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_CV_LINKAGE
-# else
-# define OPENTRACK_CV_EXPORT OPENTRACK_CV_LINKAGE
-# endif
-
-#else
- #ifdef _WIN32
- # define OPENTRACK_CV_LINKAGE __declspec(dllimport)
- #else
- # define OPENTRACK_CV_LINKAGE
- #endif
-
- #ifndef _MSC_VER
- # define OPENTRACK_CV_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_CV_LINKAGE
- #else
- # define OPENTRACK_CV_EXPORT OPENTRACK_CV_LINKAGE
- #endif
-#endif