mirror-chatterino2/src/widgets/settingspages/AccountsPage.hpp

22 lines
397 B
C++
Raw Normal View History

2018-01-12 23:09:05 +01:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "widgets/AccountSwitchWidget.hpp"
#include "widgets/settingspages/SettingsPage.hpp"
2018-01-12 23:09:05 +01:00
#include <QPushButton>
2018-01-12 23:09:05 +01:00
namespace chatterino {
class AccountsPage : public SettingsPage
{
public:
AccountsPage();
private:
2018-07-06 19:23:47 +02:00
QPushButton *addButton_;
QPushButton *removeButton_;
AccountSwitchWidget *accountSwitchWidget_;
2018-01-12 23:09:05 +01:00
};
2018-01-12 23:09:05 +01:00
} // namespace chatterino