#ifndef UI_TOUCH_SELECTION_UI_TOUCH_SELECTION_EXPORT_H_
#define UI_TOUCH_SELECTION_UI_TOUCH_SELECTION_EXPORT_H_
#include "build/build_config.h"
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(UI_TOUCH_SELECTION_IMPLEMENTATION)
#define UI_TOUCH_SELECTION_EXPORT __declspec(dllexport)
#else
#define UI_TOUCH_SELECTION_EXPORT __declspec(dllimport)
#endif
#else
#define UI_TOUCH_SELECTION_EXPORT __attribute__((visibility("default")))
#endif
#else
#define UI_TOUCH_SELECTION_EXPORT
#endif
#endif