mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
376 B
C++
22 lines
376 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 *accountSwitchWidget_;
|
|
};
|
|
|
|
} // namespace chatterino
|