|
ipstream & | owl::operator>> (ipstream &is, tstring &str) |
| This operator of ipstream extracts (reads) from the ipstream is, to the string str.
|
|
opstream & | owl::operator<< (opstream &os, const tstring &str) |
|
ipstream & | owl::operator>> (ipstream &ps, int8 &ch) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, uint8 &ch) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, char &ch) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, signed short &sh) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, unsigned short &sh) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, signed int &i) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, unsigned int &i) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, bool &b) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, signed long &l) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, unsigned long &l) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &, int64 &) |
|
ipstream & | owl::operator>> (ipstream &, uint64 &) |
|
ipstream & | owl::operator>> (ipstream &ps, float &f) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, double &d) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
ipstream & | owl::operator>> (ipstream &ps, long double &l) |
| This friend operator of ipstream extracts (reads) from the ipstream ps, to the given argument.
|
|
opstream & | owl::operator<< (opstream &, int8) |
| opstream, a specialized derivative of pstream, is the base class for writing (inserting) streamable objects.
|
|
opstream & | owl::operator<< (opstream &ps, uint8 ch) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, char ch) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, signed short sh) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, unsigned short sh) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, signed int i) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, unsigned int i) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, bool b) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, signed long l) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, unsigned long l) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &, int64) |
|
opstream & | owl::operator<< (opstream &, uint64) |
|
opstream & | owl::operator<< (opstream &ps, float f) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, double d) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
opstream & | owl::operator<< (opstream &ps, long double l) |
| This friend operator of opstream inserts (writes) the given argument to the given ipstream object.
|
|
template<class Base > |
void | owl::WriteBaseObject (Base *base, opstream &out) |
|
template<class Base > |
void | owl::ReadBaseObject (Base *base, ipstream &in) |
|
template<class Base > |
void | owl::WriteVirtualBase (Base *base, opstream &out) |
|
template<class Base > |
void | owl::ReadVirtualBase (Base *base, ipstream &in) |
|