Added explicit dll export for Alpr class on Windows

This commit is contained in:
Matt Hill
2015-10-18 22:57:48 -04:00
parent 7204fbc307
commit dcd34ae6ec

View File

@@ -25,6 +25,12 @@
#include <fstream>
#include <stdint.h>
#ifdef WIN32
#define OPENALPR_DLL_EXPORT __declspec( dllexport )
#else
#define OPENALPR_DLL_EXPORT
#endif
namespace alpr
{
@@ -118,7 +124,7 @@ namespace alpr
class Config;
class AlprImpl;
class Alpr
class OPENALPR_DLL_EXPORT Alpr
{
public: