mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
311 B
C++
23 lines
311 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QStringListModel>
|
|
|
|
class QVBoxLayout;
|
|
|
|
namespace chatterino {
|
|
|
|
class IgnoresPage : public SettingsPage
|
|
{
|
|
public:
|
|
IgnoresPage();
|
|
|
|
void onShow() final;
|
|
|
|
private:
|
|
QStringListModel userListModel_;
|
|
};
|
|
|
|
} // namespace chatterino
|