123456789101112131415161718192021222324252627 |
- #pragma once
- #include "auth-oauth.hpp"
- class BrowserDock;
- 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);
- };
|