#ifndef SSHCLIENT_H #define SSHCLIENT_H #include #include "sshsession.h" using namespace amnezia; namespace libssh { class Client : public QObject { Q_OBJECT public: Client(QObject *parent = nullptr); ~Client(); std::shared_ptr getSession(); }; } #endif // SSHCLIENT_H