2018-09-29 01:45:43 +02:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-09-29 01:45:43 +02: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
|
|
|
|
|
2021-10-21 11:51:16 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
#include "td/telegram/InputMessageText.h"
|
|
|
|
#include "td/telegram/MessageId.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
2018-09-29 02:29:57 +02:00
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2021-09-29 13:06:43 +02:00
|
|
|
#include "td/utils/Status.h"
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ContactsManager;
|
2022-07-22 17:11:55 +02:00
|
|
|
class Td;
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
class DraftMessage {
|
|
|
|
public:
|
2021-11-11 15:39:09 +01:00
|
|
|
int32 date = 0;
|
2018-09-29 01:45:43 +02:00
|
|
|
MessageId reply_to_message_id;
|
|
|
|
InputMessageText input_message_text;
|
|
|
|
};
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::draftMessage> get_draft_message_object(const unique_ptr<DraftMessage> &draft_message);
|
|
|
|
|
|
|
|
unique_ptr<DraftMessage> get_draft_message(ContactsManager *contacts_manager,
|
2021-09-29 13:06:43 +02:00
|
|
|
telegram_api::object_ptr<telegram_api::DraftMessage> &&draft_message_ptr);
|
|
|
|
|
2022-07-22 17:11:55 +02:00
|
|
|
Result<unique_ptr<DraftMessage>> get_draft_message(Td *td, DialogId dialog_id,
|
2021-09-29 13:06:43 +02:00
|
|
|
td_api::object_ptr<td_api::draftMessage> &&draft_message);
|
2018-09-29 01:45:43 +02:00
|
|
|
|
|
|
|
} // namespace td
|