2013-10-25 15:19:00 +00:00
|
|
|
/*
|
2013-12-20 19:25:49 +00:00
|
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
2013-10-25 15:19:00 +00: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).
|
|
|
|
*
|
|
|
|
* Copyright Nikolai Kudashov, 2013.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
package org.telegram.messenger;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
public class TLObject {
|
|
|
|
public TLObject () {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
public void readParams(AbsSerializedData stream) {
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] serialize () {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
public void serializeToStream(AbsSerializedData stream) {
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Class<? extends TLObject> responseClass () {
|
|
|
|
return this.getClass();
|
|
|
|
}
|
|
|
|
|
|
|
|
public int layer () {
|
2014-02-04 18:36:55 +00:00
|
|
|
return 11;
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
public void parseVector(TLRPC.Vector vector, AbsSerializedData data) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void freeResources() {
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|