Chatterino
StreamView.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QUrl>
4 #include <QWidget>
5 
6 #include <memory>
7 
8 class QWebEngineView;
9 
10 namespace chatterino {
11 
12 class Channel;
13 
14 class StreamView : public QWidget
15 {
16 public:
17  StreamView(std::shared_ptr<Channel> channel, const QUrl &url);
18 
19 private:
20 #ifdef USEWEBENGINE
21  QWebEngineView *stream;
22 #endif
23 };
24 
25 } // namespace chatterino
Definition: Application.cpp:48
StreamView(std::shared_ptr< Channel > channel, const QUrl &url)
Definition: StreamView.cpp:15
Definition: StreamView.hpp:14