mirror-chatterino2/src/widgets/accountpopup.hpp
2017-06-11 09:31:45 +02:00

33 lines
449 B
C++

#pragma once
#include <QWidget>
#include <memory>
namespace Ui {
class AccountPopup;
}
namespace chatterino {
class Channel;
namespace widgets {
class AccountPopupWidget : public QWidget
{
Q_OBJECT
public:
AccountPopupWidget(std::shared_ptr<Channel> &channel);
void setName(const QString &name);
private:
Ui::AccountPopup *_ui;
std::shared_ptr<Channel> &_channel;
};
} // namespace widgets
} // namespace chatterino