19 lines
373 B
C
19 lines
373 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Classes that support asynchronous operations.
|
||
|
|
*
|
||
|
|
* @mermaid-interactive{dependencies/CesiumAsync}
|
||
|
|
*/
|
||
|
|
namespace CesiumAsync {}
|
||
|
|
|
||
|
|
#if defined(_WIN32) && defined(CESIUM_SHARED)
|
||
|
|
#ifdef CESIUMASYNC_BUILDING
|
||
|
|
#define CESIUMASYNC_API __declspec(dllexport)
|
||
|
|
#else
|
||
|
|
#define CESIUMASYNC_API __declspec(dllimport)
|
||
|
|
#endif
|
||
|
|
#else
|
||
|
|
#define CESIUMASYNC_API
|
||
|
|
#endif
|