InputStream.hpp was missing from the source file listing in CMake files, and added an important comment in the doc of InputStream::read (#349)

This commit is contained in:
Laurent Gomila 2013-05-09 13:37:24 +02:00
parent 0edf79cb89
commit ae11207cdf
2 changed files with 5 additions and 1 deletions

View File

@ -46,10 +46,13 @@ public :
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
virtual ~InputStream() {} virtual ~InputStream() {}
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Read data from the stream /// \brief Read data from the stream
/// ///
/// After reading, the stream's reading position must be
/// advanced by the amount of bytes read.
///
/// \param data Buffer where to copy the read data /// \param data Buffer where to copy the read data
/// \param size Desired number of bytes to read /// \param size Desired number of bytes to read
/// ///

View File

@ -9,6 +9,7 @@ set(SRC
${SRCROOT}/Err.cpp ${SRCROOT}/Err.cpp
${INCROOT}/Err.hpp ${INCROOT}/Err.hpp
${INCROOT}/Export.hpp ${INCROOT}/Export.hpp
${INCROOT}/InputStream.hpp
${SRCROOT}/Lock.cpp ${SRCROOT}/Lock.cpp
${INCROOT}/Lock.hpp ${INCROOT}/Lock.hpp
${SRCROOT}/Mutex.cpp ${SRCROOT}/Mutex.cpp