| 70 | } |
| 71 | |
| 72 | QStringList 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 | } |