Chatterino
IgnoresPage.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 #include <QStringListModel>
6 
7 class QVBoxLayout;
8 
9 namespace chatterino {
10 
11 class IgnoresPage : public SettingsPage
12 {
13 public:
14  IgnoresPage();
15 
16  void onShow() final;
17 
18 private:
19  QStringListModel userListModel_;
20 };
21 
22 } // namespace chatterino
Definition: IgnoresPage.hpp:11
void onShow() final
Definition: IgnoresPage.cpp:114
Definition: Application.cpp:48
Definition: SettingsPage.hpp:49
IgnoresPage()
Definition: IgnoresPage.cpp:31