yaml-cpp is an open source C++ library, for parsing and emitting YAML.
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-cppI'd like to obtain every node in a map without knowing the keys. My YAML looks like this: characterType : type1 : …
c++ yaml-cppI have recently decided to use yaml as my configuration file technology, and am writing a c++ linux application on …
c++ yaml yaml-cppI 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-cppHow 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-cppI am trying to write a function that will write/edit a node in my .yaml file using yaml-cpp. I …
c++ yaml yaml-cppHere's the complete log: /tmp/ccCvErNZ.o: In function `YAML::detail::node& YAML::detail::node_data::get<std::…
c++ yaml undefined-reference yaml-cppI have a very simple problem parsing a yaml file of this form: - Foo - Bar: b1: 5 I would …
c++ yaml-cpp