// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020 // // 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/ChannelId.h" #include "td/telegram/ChatId.h" #include "td/telegram/DialogId.h" #include "td/telegram/SecretChatId.h" #include "td/telegram/UserId.h" #include "td/telegram/WebPageId.h" #include namespace td { class Td; struct Dependencies { std::unordered_set user_ids; std::unordered_set chat_ids; std::unordered_set channel_ids; std::unordered_set secret_chat_ids; std::unordered_set dialog_ids; std::unordered_set web_page_ids; }; void resolve_dependencies_force(Td *td, const Dependencies &dependencies); } // namespace td