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