IOutputStream

Engine/source/core/stream/tStream.h

An output stream that writes elements of type "T".

More...

Public Types

T
ElementType 

The element type of this input stream.

Parent 

Public Functions

write(const ElementType * buffer, U32 num)

Write "num" elements from "buffer" to the stream at its current position.

Detailed Description

An output stream that writes elements of type "T".

note:

This stream has an inherent position property and is thus not safe for concurrent access.

Public Types

typedef T ElementType 

The element type of this input stream.

typedef void Parent 

Public Functions

write(const ElementType * buffer, U32 num)

Write "num" elements from "buffer" to the stream at its current position.

Parameters:

buffer

The buffer from which to read elements.

num

Number of elements to write.