#ifndef DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_FEATURES_EXPORT_H_
#define DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_FEATURES_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(BLUETOOTH_FEATURES_IMPLEMENTATION)
#define BLUETOOTH_FEATURES_EXPORT __declspec(dllexport)
#else
#define BLUETOOTH_FEATURES_EXPORT __declspec(dllimport)
#endif
#else
#if defined(BLUETOOTH_FEATURES_IMPLEMENTATION)
#define BLUETOOTH_FEATURES_EXPORT __attribute__((visibility("default")))
#else
#define BLUETOOTH_FEATURES_EXPORT
#endif
#endif
#else
#define BLUETOOTH_FEATURES_EXPORT
#endif
#endif