Internal
Public Access
20 lines
507 B
C++
20 lines
507 B
C++
#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
|