| 57 | } |
| 58 | |
| 59 | bool LightpackPluginInterface::VerifySessionKey(QString sessionKey) |
| 60 | { |
| 61 | DEBUG_LOW_LEVEL << Q_FUNC_INFO << sessionKey; |
| 62 | |
| 63 | foreach(Plugin* plugin, _plugins){ |
| 64 | if (plugin->Guid() == sessionKey) |
| 65 | return true; |
| 66 | } |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | Plugin* LightpackPluginInterface::findName(QString name) |
| 71 | { |
no outgoing calls
no test coverage detected