2011-09-11 02:57:23 +04:00
|
|
|
#include "yaml-cpp/yaml.h"
|
2011-09-08 11:10:04 +04:00
|
|
|
#include <map>
|
2011-09-07 09:12:24 +04:00
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
2011-09-11 02:57:23 +04:00
|
|
|
YAML::Node node = YAML::Parse("{foo: bar, monkey: value}");
|
|
|
|
|
std::cout << node << "\n";
|
2011-09-09 11:39:36 +04:00
|
|
|
|
2011-09-07 09:12:24 +04:00
|
|
|
return 0;
|
|
|
|
|
}
|