Merge internal repository.

Delete TODO list, use issue list instead.
This commit is contained in:
castano
2007-10-16 20:53:12 +00:00
parent a7ac577d15
commit 645eda8fd4
24 changed files with 1304 additions and 185 deletions

View File

@ -9,7 +9,7 @@
namespace nv
{
/** Base stream class. */
/// Base stream class.
class Stream {
public:
@ -41,7 +41,7 @@ public:
ByteOrder byteOrder() const { return m_byteOrder; }
/// Serialize the given data.
/// Serialize the given data. @@ Should return bytes serialized?
virtual void serialize( void * data, int len ) = 0;
/// Move to the given position in the archive.
@ -55,7 +55,10 @@ public:
/// Determine if there has been any error.
virtual bool isError() const = 0;
/// Clear errors.
virtual void clearError() = 0;
/// Return true if the stream is at the end.
virtual bool isAtEnd() const = 0;