HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TS_API.h
Go to the documentation of this file.
1 
2 #ifndef __TS_API_h__
3 #define __TS_API_h__
4 
5 #include <SYS/SYS_Visibility.h>
6 
7 // Note that we use HTS_API here instead of the expected TS_API because the
8 // USD library has a TS_API symbol used for a similar purpose (the pxr_ts
9 // library). Out of an abundance of caution, we avoid any potential conflicts
10 // by using a different symbol.
11 
12 #ifdef TS_EXPORTS
13 #define HTS_API SYS_VISIBILITY_EXPORT
14 #else
15 #define HTS_API SYS_VISIBILITY_IMPORT
16 #endif
17 
18 #endif