Top "Yaml-cpp" questions

yaml-cpp is an open source C++ library, for parsing and emitting YAML.

How to load YAML file via yaml-cpp?

I am very new on yaml-cpp, I tried the simplest program but failed and also didn't find answer from author's …

c++ yaml-cpp
yaml-cpp Easiest way to iterate through a map with undefined values

I'd like to obtain every node in a map without knowing the keys. My YAML looks like this: characterType : type1 : …

c++ yaml-cpp
How to use yaml-cpp in a C++ program on Linux?

I have recently decided to use yaml as my configuration file technology, and am writing a c++ linux application on …

c++ yaml yaml-cpp
fatal error: yaml-cpp/yaml.h: No such file or directory

I am trying to compile my own c++/qt5.2 app which uses yaml-cpp under Ubuntu 14.04. While issuing the make command …

c++ qt yaml-cpp
yaml-cpp read sequence in item

How can I read this YAML file with yaml-cpp: sensors: - id: 5 hardwareId: 28-000005a32133 type: 1 - id: 6 hardwareId: 28-000005…

c++ yaml yaml-cpp
C++ YAML: How to edit/write to a node in a .yaml file

I am trying to write a function that will write/edit a node in my .yaml file using yaml-cpp. I …

c++ yaml yaml-cpp
Compiler error with yaml-cpp - undefined reference to `YAML::detail::node_data::convert_to_map`

Here's the complete log: /tmp/ccCvErNZ.o: In function `YAML::detail::node& YAML::detail::node_data::get<std::…

c++ yaml undefined-reference yaml-cpp
Yaml-cpp (new API): Problems mixing maps and scalars in a sequence

I have a very simple problem parsing a yaml file of this form: - Foo - Bar: b1: 5 I would …

c++ yaml-cpp