amnezia-client/client/core/sshclient.cpp
2022-12-23 10:13:06 +03:00

18 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>();
}
}