Go to the documentation of this file.
30 #ifndef __CLAW_BUFFERED_ISTREAM_HPP__
31 #define __CLAW_BUFFERED_ISTREAM_HPP__
41 template<
typename Stream >
46 typedef Stream stream_type;
57 bool read(
char* buf,
unsigned int n );
59 void move(
unsigned int n );
63 operator bool()
const;
67 stream_type& m_stream;
80 unsigned int m_buffer_size;
87 #endif // __CLAW_BUFFERED_ISTREAM_HPP__