comparison native/vampyhost.cpp @ 120:7c0c11577819

Add setup.py and Vamp SDK subrepo
author Chris Cannam
date Mon, 22 Jun 2015 16:31:44 +0100
parents 2370b942cd32
children 1f23d18883a1
comparison
equal deleted inserted replaced
119:36fed61cc3ac 120:7c0c11577819
57 57
58 #include <iostream> 58 #include <iostream>
59 #include <string> 59 #include <string>
60 60
61 #include <cmath> 61 #include <cmath>
62
63 #if (VAMP_SDK_MAJOR_VERSION != 2 || VAMP_SDK_MINOR_VERSION < 6)
64 #error "Vamp plugin SDK v2, version 2.6 or newer required"
65 #endif
62 66
63 using namespace std; 67 using namespace std;
64 using namespace Vamp; 68 using namespace Vamp;
65 using namespace Vamp::HostExt; 69 using namespace Vamp::HostExt;
66 70