views:

1339

answers:

3

YAML seems like a great format for configuration files & data binding persistent objects in human-readable form...

Is there a C++ library that handles YAML? Does Boost::Serialization have plans for a YAML option?

EDIT: I would prefer an OO library.

+1  A: 

Are you looking for an OO library specifically, or will a C library suffice?

Tanktalus
I would prefer an OO library.
ceretullis
+5  A: 

A quick search gave me this: yaml-cpp

Luc Hermitte
A: 

I found this, please if you use it let me know how it did it for you and post some example if possible,

http://code.google.com/soc/2008/boost/appinfo.html?csaid=BE3EEB904A90B03A

Thanks, AlfC