mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 22:02:44 +08:00
Added explicit dll export for Alpr class on Windows
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user