Renamed InputStream::GetPosition to InputStream::Tell (more consistent naming)

This commit is contained in:
Laurent Gomila 2011-07-20 08:03:40 +02:00
parent aada9ca545
commit 3d4bb1f568
3 changed files with 7 additions and 7 deletions

View file

@ -69,12 +69,12 @@ public :
virtual Int64 Seek(Int64 position) = 0;
////////////////////////////////////////////////////////////
/// \brief Return the current reading position in the stream
/// \brief Get the current reading position in the stream
///
/// \return The current position, or -1 on error.
///
////////////////////////////////////////////////////////////
virtual Int64 GetPosition() = 0;
virtual Int64 Tell() = 0;
////////////////////////////////////////////////////////////
/// \brief Return the size of the stream
@ -121,7 +121,7 @@ public :
///
/// Int64 Seek(Int64 position);
///
/// Int64 GetPosition();
/// Int64 Tell();
///
/// Int64 GetSize();
///