removed linking with botan and qssh

This commit is contained in:
vladimir.kuznetsov 2022-12-23 10:13:06 +03:00
parent 81cf108471
commit f9b2829396
10 changed files with 329 additions and 318 deletions

View file

@ -7,14 +7,16 @@
using namespace amnezia;
class SshClient : public QObject
{
Q_OBJECT
public:
SshClient(QObject *parent = nullptr);
~SshClient();
namespace libssh {
class Client : public QObject
{
Q_OBJECT
public:
Client(QObject *parent = nullptr);
~Client();
std::shared_ptr<SshSession> getSession();
};
std::shared_ptr<Session> getSession();
};
}
#endif // SSHCLIENT_H