GrabBag/SDK/binocularMark/Inc/SG_algo_Export.h

23 lines
675 B
C
Raw Normal View History

2025-12-10 00:01:32 +08:00
#pragma once
2025-07-23 01:35:14 +08:00
#if defined(_MSC_VER) || defined(WIN64) || defined(_WIN64) || defined(__WIN64__) || defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
# define Q_DECL_EXPORT __declspec(dllexport)
# define Q_DECL_IMPORT __declspec(dllimport)
#else
# define Q_DECL_EXPORT __attribute__((visibility("default")))
# define Q_DECL_IMPORT __attribute__((visibility("default")))
#endif
2025-12-10 00:01:32 +08:00
#if defined(SG_API_LIBRARY)
# define SG_APISHARED_EXPORT Q_DECL_EXPORT
2025-07-23 01:35:14 +08:00
#else
2025-12-10 00:01:32 +08:00
# define SG_APISHARED_EXPORT Q_DECL_IMPORT
2025-07-23 01:35:14 +08:00
#endif
2025-12-10 00:01:32 +08:00
#include "SG_baseDataType.h"
#ifndef M_PI
#define M_PI 3.14159265358979323846 // pi
#endif // !M_PI