diff options
Diffstat (limited to 'protocols/Telegram/tdlib/td/td/telegram/InputMessageText.hpp')
-rw-r--r-- | protocols/Telegram/tdlib/td/td/telegram/InputMessageText.hpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/protocols/Telegram/tdlib/td/td/telegram/InputMessageText.hpp b/protocols/Telegram/tdlib/td/td/telegram/InputMessageText.hpp new file mode 100644 index 0000000000..d50096e796 --- /dev/null +++ b/protocols/Telegram/tdlib/td/td/telegram/InputMessageText.hpp @@ -0,0 +1,35 @@ +// +// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 +// +// 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 + +#include "td/telegram/InputMessageText.h" + +#include "td/telegram/MessageEntity.hpp" + +#include "td/utils/tl_helpers.h" + +namespace td { + +template <class StorerT> +void store(const InputMessageText &input_message_text, StorerT &storer) { + BEGIN_STORE_FLAGS(); + STORE_FLAG(input_message_text.disable_web_page_preview); + STORE_FLAG(input_message_text.clear_draft); + END_STORE_FLAGS(); + store(input_message_text.text, storer); +} + +template <class ParserT> +void parse(InputMessageText &input_message_text, ParserT &parser) { + BEGIN_PARSE_FLAGS(); + PARSE_FLAG(input_message_text.disable_web_page_preview); + PARSE_FLAG(input_message_text.clear_draft); + END_PARSE_FLAGS(); + parse(input_message_text.text, parser); +} + +} // namespace td |