Fixed up the old API stuff, and removed the util/value (since it's no longer needed)

This commit is contained in:
Jesse Beder
2011-09-10 23:11:28 -05:00
parent 03fc837236
commit 2d06df474b
12 changed files with 20 additions and 32 deletions

View File

@@ -1,5 +1,2 @@
add_executable(parse parse.cpp)
target_link_libraries(parse yaml-cpp)
add_executable(value value.cpp)
target_link_libraries(value yaml-cpp)

View File

@@ -1,10 +0,0 @@
#include "yaml-cpp/yaml.h"
#include <map>
int main()
{
YAML::Node node = YAML::Parse("{foo: bar, monkey: value}");
std::cout << node << "\n";
return 0;
}