mirror-chatterino2/src/widgets/settingspages/IgnoreusersPage.hpp

21 lines
318 B
C++
Raw Normal View History

2018-01-23 21:33:49 +01:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/SettingsPage.hpp"
2018-01-23 21:33:49 +01:00
#include <QStringListModel>
2018-01-23 21:33:49 +01:00
namespace chatterino {
2018-01-23 21:33:49 +01:00
class IgnoreUsersPage : public SettingsPage
{
public:
IgnoreUsersPage();
void onShow() final;
private:
QStringListModel userListModel;
2018-01-23 21:33:49 +01:00
};
2018-01-23 21:33:49 +01:00
} // namespace chatterino