mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
368 B
C++
23 lines
368 B
C++
|
#pragma once
|
||
|
|
||
|
#include <QUrl>
|
||
|
#include <QWidget>
|
||
|
#include <memory>
|
||
|
|
||
|
class QWebEngineView;
|
||
|
|
||
|
namespace chatterino {
|
||
|
class Channel;
|
||
|
|
||
|
namespace widgets {
|
||
|
class StreamView : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
StreamView(std::shared_ptr<Channel> channel, QUrl url);
|
||
|
|
||
|
private:
|
||
|
QWebEngineView *stream;
|
||
|
};
|
||
|
} // namespace widgets
|
||
|
} // namespace chatterino
|