yaml.h 795 B

123456789101112131415161718192021222324
  1. #ifndef YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
  2. #define YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66
  3. #if defined(_MSC_VER) || \
  4. (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
  5. (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
  6. #pragma once
  7. #endif
  8. #include "yaml-cpp/parser.h"
  9. #include "yaml-cpp/emitter.h"
  10. #include "yaml-cpp/emitterstyle.h"
  11. #include "yaml-cpp/stlemitter.h"
  12. #include "yaml-cpp/exceptions.h"
  13. #include "yaml-cpp/node/node.h"
  14. #include "yaml-cpp/node/impl.h"
  15. #include "yaml-cpp/node/convert.h"
  16. #include "yaml-cpp/node/iterator.h"
  17. #include "yaml-cpp/node/detail/impl.h"
  18. #include "yaml-cpp/node/parse.h"
  19. #include "yaml-cpp/node/emit.h"
  20. #endif // YAML_H_62B23520_7C8E_11DE_8A39_0800200C9A66