saynono / ofxYAML

Wrapper for yaml-cpp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ofxYAML

A wrapper for yaml-cpp.

Tested with OpenFrameworks (0.10.0). Works with both macOS Sierra (Xcode 9.4) and Windows (VS 2017). On Linux make sure you install yaml-cpp according to your distribution's guidelines.


Usage

You can use the OF Project Generator to add this addon in your project.

#include "ofxYAML.h"

Place your yaml file in the bin/data folder and access it with:

yaml.load("config.yaml");

int framerate = yaml["frameRate"].as<int>();
bool verticalSync = yaml["verticalSync"].as<bool>();
string title = yaml["title"].as<string>();

About

Wrapper for yaml-cpp


Languages

Language:C++ 90.1%Language:Makefile 8.1%Language:C 1.8%