# HG changeset patch # User cannam # Date 1163180835 0 # Node ID 39be57dd4eb75ab9d36029f1028c6b7fa4e9a834 # Parent ce61ad9b9159b00a8d7a3dd468c34ac2bf474328 * add output names as well as descriptions diff -r ce61ad9b9159 -r 39be57dd4eb7 host/vamp-simple-host.cpp --- a/host/vamp-simple-host.cpp Wed Nov 01 17:48:21 2006 +0000 +++ b/host/vamp-simple-host.cpp Fri Nov 10 17:47:15 2006 +0000 @@ -407,7 +407,9 @@ if (outputs.size() > 1) { for (size_t j = 0; j < outputs.size(); ++j) { cerr << " (" << j << ") " - << outputs[j].description << endl; + << outputs[j].description + << ", \"" << outputs[j].name << "\"" + << endl; } } ++index;