src/dataBuffer.h

changeset 138
a426c1039655
parent 135
8b9132fea327
equal deleted inserted replaced
137:73d057b030d0 138:a426c1039655
30 #define BOTC_DATABUFFER_H 30 #define BOTC_DATABUFFER_H
31 31
32 #include "main.h" 32 #include "main.h"
33 #include "stringTable.h" 33 #include "stringTable.h"
34 34
35 // ------------------------------------------------------------------------------------------------ 35 // _________________________________________________________________________________________________
36 // 36 //
37 // The DataBuffer class stores a section of bytecode. Buffers are allocated on 37 // The DataBuffer class stores a section of bytecode. Buffers are allocated on
38 // the heap and written to using the @c write* functions. Buffers can be cut and 38 // the heap and written to using the @c write* functions. Buffers can be cut and
39 // pasted together with @c mergeAndDestroy, note that this function destroys the 39 // pasted together with @c mergeAndDestroy, note that this function destroys the
40 // parameter buffer in the process 40 // parameter buffer in the process
82 82
83 private: 83 private:
84 void copyBuffer (const DataBuffer* buf); 84 void copyBuffer (const DataBuffer* buf);
85 }; 85 };
86 86
87 // ------------------------------------------------------------------------------------------------ 87 // _________________________________________________________________________________________________
88 // 88 //
89 // Returns the amount of bytes written into the buffer. 89 // Returns the amount of bytes written into the buffer.
90 // 90 //
91 inline int DataBuffer::writtenSize() const 91 inline int DataBuffer::writtenSize() const
92 { 92 {

mercurial