2021-07-26 20:06:14 +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
|
|
|
|
|
|
|
|
class PeerData;
|
|
|
|
class UserData;
|
|
|
|
|
|
|
|
namespace Bot {
|
|
|
|
|
|
|
|
struct SendCommandRequest {
|
|
|
|
not_null<PeerData*> peer;
|
|
|
|
QString command;
|
|
|
|
FullMsgId context;
|
2021-09-30 06:04:55 +00:00
|
|
|
MsgId replyTo = 0;
|
2021-07-26 20:06:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[[nodiscard]] QString WrapCommandInChat(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
const QString &command,
|
|
|
|
const FullMsgId &context);
|
|
|
|
[[nodiscard]] QString WrapCommandInChat(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
const QString &command,
|
|
|
|
not_null<UserData*> bot);
|
|
|
|
|
|
|
|
} // namespace Bot
|