@brief Get a pointer to the current position * @retval "const char*" Pointer to current cursor position within the data stream */
| 49 | * @retval "const char*" Pointer to current cursor position within the data stream |
| 50 | */ |
| 51 | const char* getStreamPointer() const |
| 52 | { |
| 53 | return buffer ? buffer + readPos : nullptr; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @brief Return the total length of the stream |