Internal
Public Access
Add threaded session backend architecture with real SSH backend
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#ifndef ORBITHUB_UNSUPPORTED_SESSION_BACKEND_H
|
||||
#define ORBITHUB_UNSUPPORTED_SESSION_BACKEND_H
|
||||
|
||||
#include "session_backend.h"
|
||||
|
||||
class UnsupportedSessionBackend : public SessionBackend
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit UnsupportedSessionBackend(const Profile& profile, QObject* parent = nullptr);
|
||||
|
||||
public slots:
|
||||
void connectSession(const SessionConnectOptions& options) override;
|
||||
void disconnectSession() override;
|
||||
void reconnectSession(const SessionConnectOptions& options) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user