mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
210 B
C++
16 lines
210 B
C++
|
#pragma once
|
||
|
|
||
|
#include <QWindow>
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace widgets {
|
||
|
|
||
|
class DebugPopup : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
DebugPopup();
|
||
|
};
|
||
|
|
||
|
} // namespace widgets
|
||
|
} // namespace chatterino
|