Mercurial > hg > piper-vamp-js-builds
annotate tuning-difference/tuning-difference.cpp @ 56:5e9027b32179 tip master
Fixes for updated subrepos
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Wed, 16 May 2018 15:51:14 +0100 |
parents | ce1f0e2a1f75 |
children |
rev | line source |
---|---|
c@52 | 1 |
c@52 | 2 #include "PiperExport.h" |
c@52 | 3 #include "TuningDifference.h" |
c@52 | 4 |
c@52 | 5 using piper_vamp_js::PiperAdapter; |
c@52 | 6 using piper_vamp_js::PiperPluginLibrary; |
c@52 | 7 |
c@52 | 8 static std::string libname("tuning-difference"); |
c@52 | 9 |
c@52 | 10 static PiperAdapter<TuningDifference> |
c@52 | 11 tuningDifferenceAdapter( |
c@52 | 12 libname, |
c@52 | 13 { "Key and Tonality" }, |
c@52 | 14 { |
c@52 | 15 { "cents", |
c@52 | 16 { "" } |
c@52 | 17 }, |
c@52 | 18 { "tuningfreq", |
c@52 | 19 { "" } |
c@52 | 20 }, |
c@52 | 21 { "reffeature", |
c@52 | 22 { "" } |
c@52 | 23 }, |
c@52 | 24 { "otherfeature", |
c@52 | 25 { "" } |
c@52 | 26 }, |
c@52 | 27 { "rotfeature", |
c@52 | 28 { "" } |
c@52 | 29 } |
c@52 | 30 } |
c@52 | 31 ); |
c@52 | 32 |
c@52 | 33 static PiperPluginLibrary library({ |
c@52 | 34 &tuningDifferenceAdapter |
c@52 | 35 }); |
c@52 | 36 |
c@52 | 37 PIPER_EXPORT_LIBRARY(library); |
c@52 | 38 |