Cleaning up includes, fixing tbb binary include for 32 bit windows version.

This commit is contained in:
Tadas Baltrusaitis
2018-06-18 08:42:56 +01:00
parent cd24af000f
commit b571cc212b
15 changed files with 53 additions and 96 deletions

View File

@@ -32,13 +32,22 @@
//
///////////////////////////////////////////////////////////////////////////////
// Allows to overcome boost name clash stuff with C++ CLI
#ifdef __cplusplus_cli
#define generic __identifier(generic)
#endif
// This is the main DLL file.
#include "GazeAnalyserInterop.h"
#include "LandmarkDetectorInterop.h"
#include "FaceAnalyserInterop.h"
#include "GazeAnalyserInterop.h"
#include "OpenCVWrappers.h"
#include "ImageReader.h"
#include "FaceDetectorInterop.h"
#include "RecorderInterop.h"
#include "VisualizerInterop.h"
#include "SequenceReader.h"
#include "SequenceReader.h"
#ifdef __cplusplus_cli
#undef generic
#endif