ref: 01b8fcc1b4d797f0f001d3a4372d1e7f3c1c5b2d
dir: /interfaces/cpp/aubiocpp.h/
#include "aubio.h" namespace aubio { class fvec { private: fvec_t * self; public: fvec(uint_t length, uint_t channels); ~fvec(); smpl_t* operator[]( uint_t channel ); }; class cvec { private: cvec_t * self; public: smpl_t ** norm; smpl_t ** phas; cvec(uint_t length, uint_t channels); ~cvec(); }; }