c@35: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@35: c@35: #include "PiperExport.h" c@35: c@35: #include "NNLSChroma.h" c@35: #include "Chordino.h" c@35: #include "Tuning.h" c@35: c@35: std::string soname("nnls-chroma"); c@35: c@35: piper_vamp_js::PiperAdapter chromaAdapter(soname); c@35: piper_vamp_js::PiperAdapter chordinoAdapter(soname); c@35: piper_vamp_js::PiperAdapter tuningAdapter(soname); c@35: c@35: piper_vamp_js::PiperPluginLibrary library({ c@35: &chromaAdapter, &chordinoAdapter, &tuningAdapter c@35: }); c@35: c@35: PIPER_EXPORT_LIBRARY(library); c@35: