#include <socketinputstream.h>
Public Member Functions | |
SocketInputStream () | |
Constructor. | |
virtual | ~SocketInputStream () |
void | open () |
void | close () |
FILE * | getParserStream () |
bool | isReadable () |
Represents a socket input stream.
Definition at line 49 of file socketinputstream.h.
SocketInputStream::SocketInputStream | ( | ) |
SocketInputStream::~SocketInputStream | ( | ) | [virtual] |
void SocketInputStream::close | ( | ) | [virtual] |
Closes the corresponding input stream.
Closes the corresponding input stream.
void |
Implements InputStream.
Definition at line 53 of file socketinputstream.cpp.
Referenced by ~SocketInputStream().
FILE * SocketInputStream::getParserStream | ( | ) | [virtual] |
Returns the (file-)input stream needed for YACC parser.
Returns the (file-)input stream needed for YACC parser.
FILE* | Pointer to a file object. |
Implements InputStream.
Definition at line 57 of file socketinputstream.cpp.
bool SocketInputStream::isReadable | ( | ) | [virtual] |
Returns/Verifies if the corresponding input stream is readable.
Returns/Verifies if the corresponding input stream is readable.
bool | true if the corresponding input stream is readable, false otherwise. |
Implements InputStream.
Definition at line 61 of file socketinputstream.cpp.
void SocketInputStream::open | ( | ) | [virtual] |
Opens the corresponding input stream.
Opens the corresponding input stream.
void |
IOStreamException | If an error occured (e.g. if it is not possible to open a file) |
Implements InputStream.
Definition at line 49 of file socketinputstream.cpp.