|
Jive reference manual
|
#include <jem/io/PipedReader.h>

Public Member Functions | |
| PipedReader (const Ref< Pipe > &pipe) | |
| PipedReader (const Self &rhs) | |
| virtual Ref< Reader > | dup () |
Public Member Functions inherited from jem::io::InputStreamReader | |
| InputStreamReader (Ref< InputStream > in) | |
| InputStreamReader (const Self &rhs) | |
| virtual void | close () |
| Closes this input stream. More... | |
| virtual idx_t | poll (const Time &timeout) |
| virtual int | read () |
| Extracts the next character from this input stream. More... | |
| virtual idx_t | read (char *buf, idx_t n) |
| virtual void | pushBack (int c) |
| Pushes back a previously read character. More... | |
Public Member Functions inherited from jem::io::Reader | |
| virtual void | lock () |
| Locks this input stream. More... | |
| virtual void | unlock () |
| Unlocks this input stream. More... | |
| virtual int | poll () |
| Returns the number of characters that can read without blocking. More... | |
| virtual int | read (char *buf, int n) |
| Extracts multiple characters from this input stream. More... | |
| virtual int | readUntil (char *buf, int n, int delim) |
| Reads characters until a specified character. More... | |
| virtual void | skipUntil (int delim) |
| Skips characters until a specified character. More... | |
| virtual void | skipWhite () |
| Skips over white space. More... | |
| virtual int | skip (int n) |
| Skips over a specified number of characters. More... | |
| String | readLine () |
| Reads the next line from this input stream. More... | |
| virtual byte | parseByte () |
| Reads a byte from this input stream. More... | |
| virtual bool | parseBool () |
| Reads a boolean from this input stream. More... | |
| virtual long | parseInt () |
| Reads a long integer from this input stream. More... | |
| virtual double | parseFloat () |
| Reads a double from this input stream. More... | |
Public Member Functions inherited from jem::Object | |
| virtual Class * | getClass () const |
Returns the Class instance representing the runtime class of this object. More... | |
| virtual String | toString () const |
| Returns a short textual description of this object. More... | |
| virtual long | hashValue () const |
| Returns a hash value for this object. More... | |
| virtual bool | equals (const Ref< Object > &obj) const |
| Tests whether two objects are equal. More... | |
| Ref< Object > | clone () const |
| Returns a copy of this object. More... | |
Protected Member Functions | |
| virtual | ~PipedReader () |
Protected Member Functions inherited from jem::io::InputStreamReader | |
| InputStreamReader () | |
| virtual | ~InputStreamReader () |
Protected Member Functions inherited from jem::Collectable | |
| Collectable () | |
Creates an empty Collectable. More... | |
| ~Collectable () | |
| Frees resources. More... | |
Protected Member Functions inherited from jem::Interface | |
| virtual | ~Interface () |
| Empty destructor. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from jem::Object | |
| static Class * | getType () |
Returns the Class instance representing the Object class. More... | |
Protected Attributes inherited from jem::io::InputStreamReader | |
| Ref< InputStream > | input_ |
Related Functions inherited from jem::io::TextInput | |
| TextInput & | operator>> (TextInput &in, bool &b) |
| Reads a boolean from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, byte &b) |
| Reads a byte from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, char &c) |
| Reads a character from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, short &i) |
| Reads a short integer from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, int &i) |
| Reads an integer from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, long &i) |
| Reads a long integer from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, float &f) |
| Reads a float from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, double &d) |
| Reads a double from a text input stream. More... | |
| TextInput & | operator>> (TextInput &in, TextInput &(*manip)(TextInput &)) |
| Applies a manipulator function to a text input stream. More... | |
| TextInput & | skipWhite (TextInput &in) |
| Extracts white space from a text input stream. More... | |
| jem::io::PipedReader::PipedReader | ( | const Self & | rhs | ) |
|
protectedvirtual |
Reimplemented from jem::io::InputStreamReader.