mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 06:30:58 +08:00
Added explicit dll export for Alpr class on Windows
This commit is contained in:
@@ -25,6 +25,12 @@
|
|||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#define OPENALPR_DLL_EXPORT __declspec( dllexport )
|
||||||
|
#else
|
||||||
|
#define OPENALPR_DLL_EXPORT
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace alpr
|
namespace alpr
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -118,7 +124,7 @@ namespace alpr
|
|||||||
|
|
||||||
class Config;
|
class Config;
|
||||||
class AlprImpl;
|
class AlprImpl;
|
||||||
class Alpr
|
class OPENALPR_DLL_EXPORT Alpr
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user