ofstdvector
ofstdvector is a template container used in the openFrameworks ecosystem to store collections of elements with a standard vector interface while providing integration hooks for the framework’s parameter and serialization systems. It typically wraps a standard std::vector<T> and exposes the same element access and resizable storage, while adding compatibility with ofParameter, serialization, and GUI bindings.
Design and behavior: It is implemented as a thin wrapper around std::vector, preserving its stable iteration
Serialization and integration: In typical openFrameworks workflows, ofstdvector can be used with the framework’s parameter system
Usage notes: Because of its role as a bridge to the framework, ofstdvector may impose constraints or
See also: std::vector, ofParameter, openFrameworks, serialization.