mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 13:38:03 +00:00
* Fix styling
This commit is contained in:
@@ -42,21 +42,21 @@ public:
|
||||
atUint64 position() const;
|
||||
atUint64 length() const;
|
||||
|
||||
void writeBit (bool val);
|
||||
void seekBit (int bit);
|
||||
void writeUByte (atUint8 val);
|
||||
void writeByte (atInt8 val);
|
||||
void writeBit(bool val);
|
||||
void seekBit(int bit);
|
||||
void writeUByte(atUint8 val);
|
||||
void writeByte(atInt8 val);
|
||||
void writeUBytes(atUint8* data, atUint64 len);
|
||||
void writeBytes (atInt8* data, atUint64 len);
|
||||
void writeBytes(atInt8* data, atUint64 len);
|
||||
void writeUint16(atUint16 val);
|
||||
void writeInt16 (atInt16 val);
|
||||
void writeInt16(atInt16 val);
|
||||
void writeUint32(atUint32 val);
|
||||
void writeInt32 (atInt32 val);
|
||||
void writeInt32(atInt32 val);
|
||||
void writeUint64(atUint64 val);
|
||||
void writeInt64 (atInt64 val);
|
||||
void writeInt64(atInt64 val);
|
||||
void writeDouble(double val);
|
||||
void writeFloat (float val);
|
||||
void writeBool (bool val);
|
||||
void writeFloat(float val);
|
||||
void writeBool(bool val);
|
||||
void writeString(const std::string& val);
|
||||
void writeUnicode(const std::string& str);
|
||||
void fill(atInt8 byte, atUint64 len);
|
||||
|
||||
Reference in New Issue
Block a user