| 57 | } |
| 58 | |
| 59 | const QString CPluginLibVNCServer::Details() const |
| 60 | { |
| 61 | QString szDetails; |
| 62 | szDetails += "- " + tr("Dependency libraries") + "\n"; |
| 63 | #ifdef HAVE_LIBSSH |
| 64 | CChannelSSHTunnel channel(nullptr, nullptr, nullptr); |
| 65 | szDetails += channel.GetDetails(); |
| 66 | #endif |
| 67 | return szDetails; |
| 68 | } |
| 69 | |
| 70 | COperate *CPluginLibVNCServer::OnCreateOperate(const QString &szID) |
| 71 | { |
nothing calls this directly
no test coverage detected