Orocos Real-Time Toolkit
2.6.0
|
Stringstreams, are not guaranteed to be hard realtime. More...
#include <rtt/os/rtstreams.hpp>
Public Types | |
typedef streambufs::streamsize | streamsize |
typedef streambufs::streamsize | streamsize |
Public Member Functions | |
stringstreams (const std::string &_init) | |
int | get () |
basic_istreams & | get (char &c) |
basic_istreams & | get (char *c, streamsize n, char delim) |
basic_istreams & | get (char *c, char delim) |
basic_istreams & | read (char *c, streamsize n) |
streamsize | readsome (char *c, streamsize n) |
basic_istreams & | operator>> (int &i) |
basic_istreams & | operator>> (char &c) |
basic_istreams & | operator>> (double &f) |
basic_istreams & | operator>> (std::string &s) |
basic_istreams & | operator>> (unsigned int &u) |
virtual basic_ostreams & | put (char c) |
virtual basic_ostreams & | write (const char *c, streamsize n) |
basic_ostreams & | operator<< (int i) |
Operators. | |
basic_ostreams & | operator<< (long i) |
basic_ostreams & | operator<< (char c) |
basic_ostreams & | operator<< (char *c) |
basic_ostreams & | operator<< (double f) |
basic_ostreams & | operator<< (std::string s) |
basic_ostreams & | operator<< (unsigned int u) |
basic_ostreams & | operator<< (basic_ostreams &(*f)(basic_ostreams &)) |
Private Attributes | |
stringbufs | str |
Stringstreams, are not guaranteed to be hard realtime.
Definition at line 219 of file rtstreams.hpp.
basic_ostreams & RTT::os::basic_ostreams::operator<< | ( | int | i | ) | [inherited] |
Operators.
These can not be virtual, so each one calls the appropriate read or write method defined above.
Definition at line 115 of file rtstreams.cpp.