mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
19 lines
297 B
C++
19 lines
297 B
C++
#include "sshclient.h"
|
|
|
|
namespace libssh {
|
|
Client::Client(QObject *parent) : QObject(parent)
|
|
{
|
|
ssh_init();
|
|
}
|
|
|
|
Client::~Client()
|
|
{
|
|
ssh_finalize();
|
|
}
|
|
|
|
std::shared_ptr<Session> Client::getSession()
|
|
{
|
|
return std::make_shared<Session>();
|
|
}
|
|
}
|