tdlight/tdutils/td/utils/TlDowncastHelper.h
2021-09-19 00:47:05 +03:00

30 lines
698 B
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
//
// 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/utils/common.h"
#include "td/utils/tl_storers.h"
namespace td {
template <class T>
class TlDowncastHelper final : public T {
public:
explicit TlDowncastHelper(int32 constructor) : constructor_(constructor) {
}
int32 get_id() const final {
return constructor_;
}
void store(TlStorerToString &s, const char *field_name) const final {
}
private:
int32 constructor_{0};
};
} // namespace td