comparison transform/TransformFactory.cpp @ 1172:59ae7e04f7e9

Merge
author Chris Cannam
date Fri, 04 Mar 2016 12:29:35 +0000
parents 4607603c46d0
children 6877f4200912
comparison
equal deleted inserted replaced
1171:fa1bec83441e 1172:59ae7e04f7e9
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;
400 } 412 }
401 413
402 void 414 void
403 TransformFactory::populateFeatureExtractionPlugins(TransformDescriptionMap &transforms) 415 TransformFactory::populateFeatureExtractionPlugins(TransformDescriptionMap &transforms)
404 { 416 {