comparison vamp-sdk/PluginBase.h @ 379:28e7aaed3292

Merge
author Chris Cannam
date Fri, 05 Sep 2014 16:13:32 +0100
parents e43186ff8854
children
comparison
equal deleted inserted replaced
378:29a73259f59a 379:28e7aaed3292
191 * encoded in the names. 191 * encoded in the names.
192 */ 192 */
193 std::vector<std::string> valueNames; 193 std::vector<std::string> valueNames;
194 194
195 ParameterDescriptor() : // the defaults are invalid: you must set them 195 ParameterDescriptor() : // the defaults are invalid: you must set them
196 minValue(0), maxValue(0), defaultValue(0), isQuantized(false) { } 196 minValue(0),
197 maxValue(0),
198 defaultValue(0),
199 isQuantized(false),
200 quantizeStep(0) { }
197 }; 201 };
198 202
199 typedef std::vector<ParameterDescriptor> ParameterList; 203 typedef std::vector<ParameterDescriptor> ParameterList;
200 204
201 /** 205 /**