mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
21 lines
268 B
C++
21 lines
268 B
C++
|
#pragma once
|
||
|
|
||
|
#include "widgets/settingspages/SettingsPage.hpp"
|
||
|
|
||
|
class QPushButton;
|
||
|
class QListWidget;
|
||
|
|
||
|
class QVBoxLayout;
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
class NotificationPage : public SettingsPage
|
||
|
{
|
||
|
public:
|
||
|
NotificationPage();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
} // namespace chatterino
|