2019-06-03 22:34:34 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
2019-09-13 12:22:54 +00:00
|
|
|
#include "base/object_ptr.h"
|
|
|
|
|
2019-06-03 22:34:34 +00:00
|
|
|
namespace Ui {
|
|
|
|
|
2022-02-22 12:50:19 +00:00
|
|
|
class RpWidget;
|
2019-06-03 22:34:34 +00:00
|
|
|
|
2022-02-22 12:50:19 +00:00
|
|
|
[[nodiscard]] object_ptr<RpWidget> CreateOutdatedBar(
|
|
|
|
not_null<QWidget*> parent,
|
|
|
|
const QString &workingPath);
|
2019-06-03 22:34:34 +00:00
|
|
|
|
2022-02-22 12:50:19 +00:00
|
|
|
} // namespace Ui
|