| 845 | } |
| 846 | |
| 847 | QStringList PluginList::pluginNames() const |
| 848 | { |
| 849 | QStringList result; |
| 850 | |
| 851 | for (const ESPInfo& info : m_ESPs) { |
| 852 | result.append(info.name); |
| 853 | } |
| 854 | |
| 855 | return result; |
| 856 | } |
| 857 | |
| 858 | IPluginList::PluginStates PluginList::state(const QString& name) const |
| 859 | { |
no outgoing calls
no test coverage detected