mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
21 lines
390 B
C++
21 lines
390 B
C++
#pragma once
|
|
|
|
#include "widgets/AccountSwitchWidget.hpp"
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
#include <QPushButton>
|
|
|
|
namespace chatterino {
|
|
|
|
class AccountsPage : public SettingsPage
|
|
{
|
|
public:
|
|
AccountsPage();
|
|
|
|
private:
|
|
QPushButton *addButton;
|
|
QPushButton *removeButton;
|
|
AccountSwitchWidget *accSwitchWidget;
|
|
};
|
|
|
|
} // namespace chatterino
|