- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/yaml-cpp/
- 软件文档: http://code.google.com/p/yaml-cpp/w/list
软件介绍
yaml-cpp 是一个 YAML 解析器,使用 C++ 编写,支持 YAML 1.2 规范。
示例代码:
#include <fstream>
#include "yaml.h"
int main()
{
std::ifstream fin("test.yaml");
YAML::Parser parser(fin);
YAML::Node doc;
while(parser.GetNextDocument(doc)) {
// ...
}
return 0;
}
Flexible Rails
Peter Armstrong / Manning Publications / 2008-01-23 / USD 44.99
Rails is a fantastic tool for web application development, but its Ajax-driven interfaces stop short of the richness you gain with a tool like Adobe Flex. Simply put, Flex is the most productive way t......一起来看看 《Flexible Rails》 这本书的介绍吧!
