20 lines
270 B
C++
20 lines
270 B
C++
#pragma once
|
|
|
|
#include <QTextEdit>
|
|
#include <QTimer>
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class CommandPage : public SettingsPage
|
|
{
|
|
public:
|
|
CommandPage();
|
|
|
|
private:
|
|
QTimer commandsEditTimer_;
|
|
};
|
|
|
|
} // namespace chatterino
|