c@52: c@52: #include "PiperExport.h" c@52: #include "TuningDifference.h" c@52: c@52: using piper_vamp_js::PiperAdapter; c@52: using piper_vamp_js::PiperPluginLibrary; c@52: c@52: static std::string libname("tuning-difference"); c@52: c@52: static PiperAdapter c@52: tuningDifferenceAdapter( c@52: libname, c@52: { "Key and Tonality" }, c@52: { c@52: { "cents", c@52: { "" } c@52: }, c@52: { "tuningfreq", c@52: { "" } c@52: }, c@52: { "reffeature", c@52: { "" } c@52: }, c@52: { "otherfeature", c@52: { "" } c@52: }, c@52: { "rotfeature", c@52: { "" } c@52: } c@52: } c@52: ); c@52: c@52: static PiperPluginLibrary library({ c@52: &tuningDifferenceAdapter c@52: }); c@52: c@52: PIPER_EXPORT_LIBRARY(library); c@52: