comparison plugincandidates.cpp @ 3:3bae396cf8e0

Start to organise as a Qt project, with a main (command-line) executable
author Chris Cannam
date Wed, 13 Apr 2016 09:12:04 +0100
parents 2288c1d05c28
children 6f891a9c6434
comparison
equal deleted inserted replaced
2:2288c1d05c28 3:3bae396cf8e0
145 cerr << "recordResult: not yet implemented, but result was:" << endl; 145 cerr << "recordResult: not yet implemented, but result was:" << endl;
146 for (auto &r: result) cerr << r; 146 for (auto &r: result) cerr << r;
147 cerr << "(ends)" << endl; 147 cerr << "(ends)" << endl;
148 } 148 }
149 149
150 int main(int argc, char **argv)
151 {
152 //!!! just a test
153 PluginCandidates candidates("./helper");
154 candidates.scan("vamp",
155 { "/usr/lib/vamp", "/usr/local/lib/vamp" },
156 "vampGetPluginDescriptor");
157 }
158