| 37 | class Allocator; |
| 38 | |
| 39 | class Buffer |
| 40 | { |
| 41 | public: |
| 42 | size_t capacity; ///< Capacity of the buffer. |
| 43 | size_t length; ///< Used length of the buffer. |
| 44 | unsigned char* data; ///< Start address of the buffer. |
| 45 | Allocator *allocator; |
| 46 | }; |
| 47 | |
| 48 | class Allocator |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected