mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-27 19:02:02 -04:00
25 lines
439 B
C++
25 lines
439 B
C++
#pragma once
|
|
|
|
#include "OAuth.hpp"
|
|
|
|
class RestreamAuth : public OAuthStreamKey {
|
|
Q_OBJECT
|
|
|
|
bool uiLoaded = false;
|
|
|
|
virtual bool RetryLogin() override;
|
|
|
|
virtual void SaveInternal() override;
|
|
virtual bool LoadInternal() override;
|
|
|
|
bool GetChannelInfo();
|
|
|
|
virtual void LoadUI() override;
|
|
|
|
public:
|
|
RestreamAuth(const Def &d);
|
|
~RestreamAuth();
|
|
|
|
static std::shared_ptr<Auth> Login(QWidget *parent, const std::string &service_name);
|
|
};
|