Newer
Older
Telegram / TMessagesProj / jni / tgnet / TLObject.h
ubt on 31 Oct 2017 670 bytes init
/*
 * 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