Attachments (1)
Change History (7)
by , 20 years ago
Attachment: | Stream.patch.bz2 added |
---|
comment:1 by , 20 years ago
Summary: | common\stream optimization → common/stream optimization |
---|
comment:2 by , 20 years ago
For me ReadStream and WriteStream looks like standart I/O inteface for stream. So it should consist of short simple methods gathered in declaretion section.
changes: - all methods defintion goes to header - some calls will run "faster" with inline e.g.: inline void writeSint32LE(int32 value) { writeUint32LE((uint32)value); } ... inline bool eof() const { return _pos == _bufSize; }
comment:3 by , 20 years ago
Owner: | set to |
---|
comment:4 by , 20 years ago
Status: | new → closed |
---|
comment:5 by , 20 years ago
I put a modified version of this patch into CVS. The inline keyword is not needed here, so I removed it. I also added some doxygen comments.
comment:6 by , 6 years ago
Component: | → --Other-- |
---|
Note:
See TracTickets
for help on using tickets.
Stream.patch