mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
|
#include "TLMetaType.h"
|
||
|
|
||
|
TLMetaType::TLMetaType(int32_t name_, TLMetaTypeCategory category_, std::vector<TLMetaTypeArgument> const &arguments_) :
|
||
|
name(name_), category(category_), arguments(arguments_)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
TLMetaType::~TLMetaType()
|
||
|
{
|
||
|
|
||
|
}
|