$search
#include <rtstreams.hpp>
Public Types | |
typedef streambufs::streamsize | streamsize |
Public Member Functions | |
basic_istreams (streambufs &s) | |
basic_istreams & | get (char *c, char delim) |
basic_istreams & | get (char *c, streamsize n, char delim) |
basic_istreams & | get (char &c) |
int | get () |
basic_istreams & | operator>> (unsigned int &u) |
basic_istreams & | operator>> (std::string &s) |
basic_istreams & | operator>> (double &f) |
basic_istreams & | operator>> (char &c) |
basic_istreams & | operator>> (int &i) |
basic_istreams & | read (char *c, streamsize n) |
streamsize | readsome (char *c, streamsize n) |
virtual | ~basic_istreams () |
Private Attributes | |
streambufs & | buf |
An basic_istream is a stream which can be read. Write operations will have no effect.
Each part that is read from the string is discared, so no seeking is possible. The problem is otherwise that the string in iostreams would grow unlimited.
Definition at line 113 of file rtstreams.hpp.
Definition at line 118 of file rtstreams.hpp.
RTT::os::basic_istreams::basic_istreams | ( | streambufs & | s | ) | [inline] |
Definition at line 120 of file rtstreams.hpp.
RTT::os::basic_istreams::~basic_istreams | ( | ) | [virtual] |
Definition at line 233 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::get | ( | char * | c, | |
char | delim | |||
) |
Definition at line 96 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::get | ( | char * | c, | |
streamsize | n, | |||
char | delim | |||
) |
Definition at line 79 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::get | ( | char & | c | ) |
Definition at line 73 of file rtstreams.cpp.
int RTT::os::basic_istreams::get | ( | ) |
basic_istreams & RTT::os::basic_istreams::operator>> | ( | unsigned int & | u | ) |
Definition at line 217 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::operator>> | ( | std::string & | s | ) |
Definition at line 201 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::operator>> | ( | double & | f | ) |
Definition at line 186 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::operator>> | ( | char & | c | ) |
Definition at line 180 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::operator>> | ( | int & | i | ) |
Definition at line 166 of file rtstreams.cpp.
basic_istreams & RTT::os::basic_istreams::read | ( | char * | c, | |
streamsize | n | |||
) |
Definition at line 62 of file rtstreams.cpp.
basic_istreams::streamsize RTT::os::basic_istreams::readsome | ( | char * | c, | |
streamsize | n | |||
) |
Definition at line 68 of file rtstreams.cpp.
streambufs& RTT::os::basic_istreams::buf [private] |
Definition at line 138 of file rtstreams.hpp.