2022-11-02 04:28:35 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2022-11-02 04:28:35 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2023-10-30 17:04:14 +01:00
|
|
|
#include "td/telegram/DialogId.h"
|
2022-11-02 04:28:35 +01:00
|
|
|
#include "td/telegram/MessageId.h"
|
2023-10-24 11:04:45 +02:00
|
|
|
#include "td/telegram/RepliedMessageInfo.h"
|
2023-06-07 14:10:46 +02:00
|
|
|
#include "td/telegram/StoryFullId.h"
|
2022-11-02 04:28:35 +01:00
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2023-10-23 19:54:47 +02:00
|
|
|
class Td;
|
|
|
|
|
2022-11-02 04:28:35 +01:00
|
|
|
struct MessageReplyHeader {
|
2023-10-24 11:04:45 +02:00
|
|
|
RepliedMessageInfo replied_message_info_;
|
|
|
|
|
2023-06-05 18:45:05 +02:00
|
|
|
MessageId top_thread_message_id_;
|
|
|
|
bool is_topic_message_ = false;
|
2022-11-02 04:28:35 +01:00
|
|
|
|
2023-06-05 19:45:28 +02:00
|
|
|
// or
|
|
|
|
|
2023-06-07 14:10:46 +02:00
|
|
|
StoryFullId story_full_id_;
|
2023-06-05 19:45:28 +02:00
|
|
|
|
2022-11-02 04:28:35 +01:00
|
|
|
MessageReplyHeader() = default;
|
|
|
|
|
2023-10-23 19:54:47 +02:00
|
|
|
MessageReplyHeader(Td *td, tl_object_ptr<telegram_api::MessageReplyHeader> &&reply_header_ptr, DialogId dialog_id,
|
2022-11-02 12:04:43 +01:00
|
|
|
MessageId message_id, int32 date, bool can_have_thread);
|
2022-11-02 04:28:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|