* Rename datatypes to prevent collision

This commit is contained in:
2014-06-17 21:51:18 -07:00
parent cc71bec5d7
commit 5f74cdb9ed
74 changed files with 1134 additions and 1052 deletions

View File

@@ -36,23 +36,23 @@ public:
void close();
bool isOpen() const;
bool save();
void seek(Int64 pos, SeekOrigin origin = SeekOrigin::Current);
void seek(atInt64 pos, SeekOrigin origin = SeekOrigin::Current);
bool atEnd() const;
Uint64 position() const;
Uint64 length() const;
atUint64 position() const;
atUint64 length() const;
void writeBit (bool val);
void seekBit (int bit);
void writeUByte (Uint8 val);
void writeByte (Int8 val);
void writeUBytes(Uint8* data, Uint64 len);
void writeBytes (Int8* data, Uint64 len);
void writeUint16(Uint16 val);
void writeInt16 (Int16 val);
void writeUint32(Uint32 val);
void writeInt32 (Int32 val);
void writeUint64(Uint64 val);
void writeInt64 (Int64 val);
void writeUByte (atUint8 val);
void writeByte (atInt8 val);
void writeUBytes(atUint8* data, atUint64 len);
void writeBytes (atInt8* data, atUint64 len);
void writeUint16(atUint16 val);
void writeInt16 (atInt16 val);
void writeUint32(atUint32 val);
void writeInt32 (atInt32 val);
void writeUint64(atUint64 val);
void writeInt64 (atInt64 val);
void writeDouble(double val);
void writeFloat (float val);
void writeBool (bool val);
@@ -62,9 +62,9 @@ private:
std::string m_filename;
FILE* m_fileHandle;
Endian m_endian;
Uint8 m_currentByte;
Uint8 m_bytePosition;
Uint8 m_bitShift;
atUint8 m_currentByte;
atUint8 m_bytePosition;
atUint8 m_bitShift;
bool m_bitValid;
};
}