|
Orocos Real-Time Toolkit
2.5.0
|
An basic_ostreams is a stream which can be written to. More...
#include <rtt/os/rtstreams.hpp>
Public Types | |
| typedef streambufs::streamsize | streamsize |
Public Member Functions | |
| basic_ostreams (streambufs &s) | |
| 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 &)) |
An basic_ostreams is a stream which can be written to.
Read operations will have no effect.
Definition at line 145 of file rtstreams.hpp.
| basic_ostreams & RTT::os::basic_ostreams::operator<< | ( | int | i | ) |
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.
1.7.6.1