tdlight/td/telegram/files/FileId.hpp
levlam cdefe9b1ee SetWithPosition CE and other fixes.
GitOrigin-RevId: 69278e7906c738924e1a4771b5b755ff349ea26f
2019-01-19 20:19:29 +03:00

28 lines
799 B
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// 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/files/FileId.h"
#include "td/telegram/files/FileManager.h"
#include "td/telegram/files/FileManager.hpp"
#include "td/telegram/Td.h"
namespace td {
template <class StorerT>
void store(const FileId &file_id, StorerT &storer) {
storer.context()->td().get_actor_unsafe()->file_manager_->store_file(file_id, storer);
}
template <class ParserT>
void parse(FileId &file_id, ParserT &parser) {
file_id = parser.context()->td().get_actor_unsafe()->file_manager_->parse_file(parser);
}
} // namespace td