|
Apache log4cxx
Version 0.10.0
|
Class for reading from character streams. More...
Public Member Functions | |
| InputStreamReader (const InputStreamPtr &in) | |
| Creates an InputStreamReader that uses the default charset. More... | |
| InputStreamReader (const InputStreamPtr &in, const CharsetDecoderPtr &enc) | |
| Creates an InputStreamReader that uses the given charset decoder. More... | |
| ~InputStreamReader () | |
| virtual void | close (Pool &p) |
| Closes the stream. More... | |
| virtual LogString | read (Pool &p) |
| LogString | getEncoding () const |
Public Member Functions inherited from ObjectImpl | |
| ObjectImpl () | |
| virtual | ~ObjectImpl () |
| void | addRef () const |
| void | releaseRef () const |
Public Member Functions inherited from Object | |
| virtual const helpers::Class & | getClass () const |
| virtual | ~Object () |
| virtual bool | instanceof (const Class &clazz) const =0 |
| virtual const void * | cast (const Class &clazz) const =0 |
Additional Inherited Members | |
Static Public Member Functions inherited from Object | |
| static const helpers::Class & | getStaticClass () |
| static const log4cxx::helpers::ClassRegistration & | registerClass () |
Protected Member Functions inherited from Reader | |
| Reader () | |
| Creates a new character-stream reader. More... | |
| virtual | ~Reader () |
Protected Attributes inherited from ObjectImpl | |
| unsigned int volatile | ref |
Class for reading from character streams.
Decorates a byte based InputStream and provides appropriate conversion to characters.
| InputStreamReader | ( | const InputStreamPtr & | in | ) |
Creates an InputStreamReader that uses the default charset.
| in | The input stream to decorate. |
| InputStreamReader | ( | const InputStreamPtr & | in, |
| const CharsetDecoderPtr & | enc | ||
| ) |
Creates an InputStreamReader that uses the given charset decoder.
| in | The input stream to decorate. |
| enc | The charset decoder to use for the conversion. |
| ~InputStreamReader | ( | ) |
|
virtual |
| LogString getEncoding | ( | ) | const |
| p | The memory pool associated with the reader. |
Implements Reader.