Elaztek Developer Hub
Blamite Game Engine - blam!  00367.02.08.23.1815.blamite
The core library for the Blamite Game Engine.
Stream Class Reference

Concept for reading and writing characters. More...

#include <stream.h>

Detailed Description

Concept for reading and writing characters.

For read-only stream, no need to implement PutBegin(), Put(), Flush() and PutEnd().

For write-only stream, only need to implement Put() and Flush().

concept Stream {
typename Ch;
Ch Peek() const;
Ch Take();
size_t Tell();
Ch* PutBegin();
void Put(Ch c);
void Flush();
size_t PutEnd(Ch* begin);
}

The documentation for this class was generated from the following file:
Stream
Concept for reading and writing characters.
Blam::Logger::Queue::Flush
BLAM void Flush()
Flushes the queue, causing all messages to be written to all places they are configured to do so.
Definition: queue.cpp:38