c@33: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@33: c@33: #include "PiperExport.h" c@33: c@33: #include "PYinVamp.h" c@33: #include "YinVamp.h" c@33: #include "LocalCandidatePYIN.h" c@33: c@33: std::string soname("pyin"); c@33: c@33: piper_vamp_js::PiperAdapter pyinAdapter(soname); c@33: piper_vamp_js::PiperAdapter yinAdapter(soname); c@33: piper_vamp_js::PiperAdapter localCandAdapter(soname); c@33: c@33: piper_vamp_js::PiperPluginLibrary library({ c@33: &pyinAdapter, &yinAdapter, &localCandAdapter c@33: }); c@33: c@33: PIPER_EXPORT_LIBRARY(library); c@33: