MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / getProcessNamesByCategory

Method getProcessNamesByCategory

ImagePlay/src/IPProcessFactory.cpp:72–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72QStringList IPProcessFactory::getProcessNamesByCategory(IPLProcess::IPLProcessCategory category)
73{
74 qDebug() << "IPProcessFactory::getProcessNamesByCategory";
75 QStringList filteredList;
76 for (auto it = _map.begin(); it != _map.end(); ++it)
77 {
78 if(it.value()->category() == category)
79 {
80 filteredList.push_back(it.key());
81 }
82 }
83 return filteredList;
84}

Callers 1

initMethod · 0.80

Calls 4

beginMethod · 0.45
endMethod · 0.45
valueMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected