2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00

27 lines
544 B
C
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
2017-04-06 17:38:10 +03:00
#include "boxes/abstract_box.h"
2019-07-25 20:55:11 +02:00
namespace Main {
class Session;
} // namespace Main
2019-11-27 11:02:56 +03:00
class SessionsBox : public Ui::BoxContent {
public:
2019-07-25 20:55:11 +02:00
SessionsBox(QWidget*, not_null<Main::Session*> session);
protected:
void prepare() override;
private:
2019-07-25 20:55:11 +02:00
const not_null<Main::Session*> _session;
};