mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-11-11 04:50:09 +01:00
28 lines
670 B
C++
28 lines
670 B
C++
/*
|
|
* This is the source code of tgnet library v. 1.0
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Nikolai Kudashov, 2015.
|
|
*/
|
|
|
|
#ifndef TLOBJECT_H
|
|
#define TLOBJECT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class NativeByteBuffer;
|
|
|
|
class TLObject {
|
|
|
|
public:
|
|
virtual ~TLObject();
|
|
virtual void readParams(NativeByteBuffer *stream, bool &error);
|
|
virtual void serializeToStream(NativeByteBuffer *stream);
|
|
virtual TLObject *deserializeResponse(NativeByteBuffer *stream, uint32_t constructor, bool &error);
|
|
uint32_t getObjectSize();
|
|
virtual bool isNeedLayer();
|
|
};
|
|
|
|
#endif
|