// // 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/DialogId.h" #include "td/telegram/ForumTopicIcon.h" #include "td/telegram/MessageId.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/StringBuilder.h" namespace td { class Td; class ForumTopicInfo { MessageId top_thread_message_id_; string title_; ForumTopicIcon icon_; int32 creation_date_ = 0; DialogId creator_dialog_id_; bool is_outgoing_ = false; bool is_closed_ = false; friend StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info); public: ForumTopicInfo() = default; explicit ForumTopicInfo(const tl_object_ptr &forum_topic_ptr); bool is_empty() const { return !top_thread_message_id_.is_valid(); } td_api::object_ptr get_forum_topic_info_object(Td *td) const; }; StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info); } // namespace td