comparison transform/TransformFactory.h @ 80:f4f52566e451

* Fixes to presentation and organisation of plugins (especially duplicates)
author Chris Cannam
date Fri, 15 Dec 2006 16:34:17 +0000
parents bedc7517b6e8
children dd11619b73ba
comparison
equal deleted inserted replaced
79:c1318aac18d2 80:f4f52566e451
52 type(_type), category(_category), 52 type(_type), category(_category),
53 name(_name), description(_description), 53 name(_name), description(_description),
54 friendlyName(_friendlyName), 54 friendlyName(_friendlyName),
55 maker(_maker), units(_units), configurable(_configurable) { } 55 maker(_maker), units(_units), configurable(_configurable) { }
56 56
57 QString type; 57 QString type; // e.g. feature extraction plugin
58 QString category; 58 QString category; // e.g. time > onsets
59 TransformName name; 59 TransformName name; // e.g. vamp:vamp-aubio:aubioonset
60 QString description; 60 QString description; // plugin's desc if 1 output, else "desc: output"
61 QString friendlyName; 61 QString friendlyName; // short text for layer name
62 QString maker; 62 QString maker;
63 QString units; 63 QString units;
64 bool configurable; 64 bool configurable;
65 65
66 bool operator<(const TransformDesc &od) const { 66 bool operator<(const TransformDesc &od) const {