AyuGramDesktop/Telegram/SourceFiles/ayu/boxes/confirmation_box.h
ZavaruKitsu e21ccd6024 feat: settings overhaul
fix: use more translations
2023-06-04 14:36:38 +03:00

17 lines
No EOL
401 B
C++

#include "ui/layers/box_content.h"
#include "window/window_main_menu.h"
namespace AyuUi {
class ConfirmationBox : public Ui::BoxContent {
public:
ConfirmationBox(QWidget *, not_null<Window::SessionController *> controller);
protected:
void prepare() override;
private:
void ReadAllPeers();
not_null<Window::SessionController *> _controller;
};
}