#include "sshclient.h" #include #include SshClient::SshClient(QObject *parent) : QObject(parent) { ssh_init(); } SshClient::~SshClient() { ssh_finalize(); } std::shared_ptr SshClient::getSession() { return std::make_shared(); }