mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
359 B
C++
23 lines
359 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QTimer>
|
|
|
|
class QPushButton;
|
|
class QListWidget;
|
|
|
|
namespace chatterino {
|
|
|
|
class HighlightingPage : public SettingsPage
|
|
{
|
|
public:
|
|
HighlightingPage();
|
|
|
|
private:
|
|
QTimer disabledUsersChangedTimer_;
|
|
};
|
|
|
|
} // namespace chatterino
|