libqi
1.12
|
00001 00012 #pragma once 00013 #ifndef _LIBQI_QI_CONFIG_HPP_ 00014 #define _LIBQI_QI_CONFIG_HPP_ 00015 00016 #include <qi/macro.hpp> 00017 00018 // qi_EXPORTS controls which symbols are exported when libqi 00019 // is compiled as a SHARED lib. 00020 // DO NOT USE OUTSIDE LIBQI 00021 #ifdef qi_EXPORTS 00022 # define QI_API QI_EXPORT_API 00023 #elif defined(qi_IMPORTS) 00024 # define QI_API QI_IMPORT_API 00025 #else 00026 # define QI_API 00027 #endif 00028 00029 00030 #define QI_API_LEVEL 1 00031 00032 00033 #endif // _LIBQI_QI_CONFIG_HPP_ 00034