rapidyaml  0.7.0
parse and emit YAML, and do it fast
export.hpp
Go to the documentation of this file.
1 #ifndef C4_YML_EXPORT_HPP_
2 #define C4_YML_EXPORT_HPP_
3 
4 #ifdef _WIN32
5  #ifdef RYML_SHARED
6  #ifdef RYML_EXPORTS
7  #define RYML_EXPORT __declspec(dllexport)
8  #else
9  #define RYML_EXPORT __declspec(dllimport)
10  #endif
11  #else
12  #define RYML_EXPORT
13  #endif
14 #else
15  #define RYML_EXPORT
16 #endif
17 
18 #endif /* C4_YML_EXPORT_HPP_ */