Mercurial > hg > svcore
comparison plugin/FeatureExtractionPluginFactory.cpp @ 259:dc46851837d6
* Fix many compile warnings, remove some debug output
author | Chris Cannam |
---|---|
date | Mon, 30 Apr 2007 13:36:23 +0000 |
parents | db0dd744fa8d |
children | 524bcd89743b |
comparison
equal
deleted
inserted
replaced
258:96a6dd889c68 | 259:dc46851837d6 |
---|---|
35 FeatureExtractionPluginFactory * | 35 FeatureExtractionPluginFactory * |
36 FeatureExtractionPluginFactory::instance(QString pluginType) | 36 FeatureExtractionPluginFactory::instance(QString pluginType) |
37 { | 37 { |
38 if (pluginType == "vamp") { | 38 if (pluginType == "vamp") { |
39 if (!_nativeInstance) { | 39 if (!_nativeInstance) { |
40 std::cerr << "FeatureExtractionPluginFactory::instance(" << pluginType.toStdString() | 40 // std::cerr << "FeatureExtractionPluginFactory::instance(" << pluginType.toStdString() |
41 << "): creating new FeatureExtractionPluginFactory" << std::endl; | 41 // << "): creating new FeatureExtractionPluginFactory" << std::endl; |
42 _nativeInstance = new FeatureExtractionPluginFactory(); | 42 _nativeInstance = new FeatureExtractionPluginFactory(); |
43 } | 43 } |
44 return _nativeInstance; | 44 return _nativeInstance; |
45 } | 45 } |
46 | 46 |