C++ Client-Side SDK
LaunchDarkly SDK
export.h
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #ifdef DOXYGEN_SHOULD_SKIP_THIS
8 #define LD_EXPORT(x) x
9 #else
10 #ifdef _WIN32
11 #define LD_EXPORT(x) __declspec(dllexport) x
12 #else
13 #define LD_EXPORT(x) __attribute__((visibility("default"))) x
14 #endif
15 #endif