mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
25 lines
492 B
C++
25 lines
492 B
C++
|
#pragma once
|
||
|
|
||
|
#include <QPushButton>
|
||
|
|
||
|
#include "widgets/accountswitchwidget.hpp"
|
||
|
#include "widgets/settingspages/settingspage.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace widgets {
|
||
|
namespace settingspages {
|
||
|
|
||
|
class AccountsPage : public SettingsPage
|
||
|
{
|
||
|
public:
|
||
|
AccountsPage();
|
||
|
|
||
|
private:
|
||
|
QPushButton *addButton;
|
||
|
QPushButton *removeButton;
|
||
|
AccountSwitchWidget *accSwitchWidget;
|
||
|
};
|
||
|
} // namespace settingspages
|
||
|
} // namespace widgets
|
||
|
} // namespace chatterino
|