Update documentation

This commit is contained in:
Jonny 2020-02-04 23:37:28 +00:00 committed by Lukas Dürrenberger
parent 632a015663
commit 50e173e403

View File

@ -72,15 +72,17 @@ public:
/// \param sizeInBytes Number of bytes to append /// \param sizeInBytes Number of bytes to append
/// ///
/// \see clear /// \see clear
/// \see readCurrentReadPosition /// \see getReadPosition
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
void append(const void* data, std::size_t sizeInBytes); void append(const void* data, std::size_t sizeInBytes);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Get a current reading position /// \brief Get the current reading position in the packet
/// ///
/// \return Current position /// The next read operation will read data from this position
///
/// \return The byte offset of the current read position
/// ///
/// \see append /// \see append
/// ///