 |
Open3D (C++ API)
0.13.0
|
Go to the documentation of this file. 29 #define OPEN3D_CONCATENATE_IMPL(s1, s2) s1##s2 30 #define OPEN3D_CONCATENATE(s1, s2) OPEN3D_CONCATENATE_IMPL(s1, s2) 32 #if defined(_WIN32) || defined(__CYGWIN__) 33 #define OPEN3D_DLL_IMPORT __declspec(dllimport) 34 #define OPEN3D_DLL_EXPORT __declspec(dllexport) 36 #define OPEN3D_DLL_IMPORT 37 #define OPEN3D_DLL_EXPORT 42 #elif defined(OPEN3D_ENABLE_DLL_EXPORTS) 43 #define OPEN3D_API OPEN3D_DLL_EXPORT 45 #define OPEN3D_API OPEN3D_DLL_IMPORT