NekoX/TMessagesProj/jni/tgnet/TLObject.cpp

39 lines
924 B
C++
Raw Permalink Normal View History

2015-09-24 22:52:02 +02:00
/*
2018-07-30 04:07:02 +02:00
* This is the source code of tgnet library v. 1.1
2015-09-24 22:52:02 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2018-07-30 04:07:02 +02:00
* Copyright Nikolai Kudashov, 2015-2018.
2015-09-24 22:52:02 +02:00
*/
#include "TLObject.h"
#include "NativeByteBuffer.h"
thread_local NativeByteBuffer *sizeCalculatorBuffer = new NativeByteBuffer(true);
TLObject::~TLObject() {
}
2018-07-30 04:07:02 +02:00
void TLObject::readParams(NativeByteBuffer *stream, int32_t instanceNum, bool &error) {
2015-09-24 22:52:02 +02:00
}
void TLObject::serializeToStream(NativeByteBuffer *stream) {
}
2018-07-30 04:07:02 +02:00
TLObject *TLObject::deserializeResponse(NativeByteBuffer *stream, uint32_t constructor, int32_t instanceNum, bool &error) {
2015-09-24 22:52:02 +02:00
return nullptr;
}
uint32_t TLObject::getObjectSize() {
sizeCalculatorBuffer->clearCapacity();
serializeToStream(sizeCalculatorBuffer);
return sizeCalculatorBuffer->capacity();
}
bool TLObject::isNeedLayer() {
return false;
}