#ifndef UI_VIEWS_EXAMPLES_VIEWS_EXAMPLES_WITH_CONTENT_EXPORT_H_
#define UI_VIEWS_EXAMPLES_VIEWS_EXAMPLES_WITH_CONTENT_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION)
#define VIEWS_EXAMPLES_WITH_CONTENT_EXPORT __declspec(dllexport)
#else
#define VIEWS_EXAMPLES_WITH_CONTENT_EXPORT __declspec(dllimport)
#endif
#else
#if defined(VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION)
#define VIEWS_EXAMPLES_WITH_CONTENT_EXPORT __attribute__((visibility("default")))
#else
#define VIEWS_EXAMPLES_WITH_CONTENT_EXPORT
#endif
#endif
#else
#define VIEWS_EXAMPLES_WITH_CONTENT_EXPORT
#endif
#endif