Skip to content

Instantly share code, notes, and snippets.

View pingdynasty's full-sized avatar

Martin Klang pingdynasty

View GitHub Profile
@pingdynasty
pingdynasty / StompBox.h
Created June 16, 2015 15:36
OWL Patch API changes
class FloatArray {
private:
float* data;
int sz;
public:
FloatArray(float* d, int s) :
data(d), sz(s) {}
int size(){
return sz;