Added readCurrentReadPosition in sf::Packet
This commit is contained in:
parent
1d20edebc7
commit
632a015663
|
@ -72,10 +72,21 @@ public:
|
||||||
/// \param sizeInBytes Number of bytes to append
|
/// \param sizeInBytes Number of bytes to append
|
||||||
///
|
///
|
||||||
/// \see clear
|
/// \see clear
|
||||||
|
/// \see readCurrentReadPosition
|
||||||
///
|
///
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void append(const void* data, std::size_t sizeInBytes);
|
void append(const void* data, std::size_t sizeInBytes);
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Get a current reading position
|
||||||
|
///
|
||||||
|
/// \return Current position
|
||||||
|
///
|
||||||
|
/// \see append
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
std::size_t getReadPosition() const;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Clear the packet
|
/// \brief Clear the packet
|
||||||
///
|
///
|
||||||
|
|
|
@ -63,6 +63,13 @@ void Packet::append(const void* data, std::size_t sizeInBytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
std::size_t Packet::getReadPosition() const
|
||||||
|
{
|
||||||
|
return m_readPos;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void Packet::clear()
|
void Packet::clear()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue