Mercurial > hg > svcore
comparison transform/TransformFactory.cpp @ 1182:a1f410f895d3 3.0-integration
Merge from branch pluginscan
author | Chris Cannam |
---|---|
date | Fri, 15 Apr 2016 16:26:15 +0100 |
parents | 6b1af0f05f06 |
children | c2207877689d |
comparison
equal
deleted
inserted
replaced
1175:4018fc0189bc | 1182:a1f410f895d3 |
---|---|
395 | 395 |
396 m_transforms[identifier] = desc; | 396 m_transforms[identifier] = desc; |
397 } | 397 } |
398 | 398 |
399 m_transformsPopulated = true; | 399 m_transformsPopulated = true; |
400 } | |
401 | |
402 QString | |
403 TransformFactory::getPluginPopulationWarning() | |
404 { | |
405 FeatureExtractionPluginFactory *vfactory = | |
406 FeatureExtractionPluginFactory::instance("vamp"); | |
407 QString warningMessage; | |
408 if (vfactory) { | |
409 warningMessage = vfactory->getPluginPopulationWarning(); | |
410 } | |
411 return warningMessage; | |
412 } | 400 } |
413 | 401 |
414 void | 402 void |
415 TransformFactory::populateFeatureExtractionPlugins(TransformDescriptionMap &transforms) | 403 TransformFactory::populateFeatureExtractionPlugins(TransformDescriptionMap &transforms) |
416 { | 404 { |