28 lines
597 B
C++
28 lines
597 B
C++
/*
|
|
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
|
|
|
|
#include "base/object_ptr.h"
|
|
|
|
namespace Ui {
|
|
class RpWidget;
|
|
} // namespace Ui
|
|
|
|
namespace Calls {
|
|
|
|
class Call;
|
|
|
|
[[nodiscard]] std::vector<EmojiPtr> ComputeEmojiFingerprint(
|
|
not_null<Call*> call);
|
|
|
|
[[nodiscard]] object_ptr<Ui::RpWidget> CreateFingerprintAndSignalBars(
|
|
not_null<QWidget*> parent,
|
|
not_null<Call*> call);
|
|
|
|
} // namespace Calls
|