mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
24 lines
492 B
C++
24 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
|