#include <StrMod/PassThrough.h>
Inheritance diagram for strmod::strmod::PassThrough:

Public Methods | |
| PassThrough () | |
| Doesn't do anything, so doesn't need much in its constructor. | |
| virtual int | AreYouA (const lcore::ClassIdent &cid) const |
| Asks if a class is of a particular type, or publicly derived from that type. | |
Static Public Attributes | |
| const STR_ClassIdent | identifier |
| Globally unique identifier for this class. | |
Protected Methods | |
| virtual const lcore::ClassIdent * | i_GetIdent () const |
| Returns the class identifier for the class the object actually is. | |
| virtual void | processIncoming () |
| Do something with your incoming_ data. | |
Oftentimes, when using a ProcessorModule, you will want no processing to be done in one direction or the other. That's what PassThrough StreamProcessor is for.
Definition at line 48 of file PassThrough.h.
|
|
Asks if a class is of a particular type, or publicly derived from that type. Overriden in every derived class (with a static identifier member) to compare against the identifier, then call the AreYouA methods of all the superclasses.
Reimplemented from strmod::strmod::StreamProcessor. Definition at line 70 of file PassThrough.h. |
|
|
Returns the class identifier for the class the object actually is. Should always be overridden in any class that has a static identifier member. Reimplemented from strmod::strmod::StreamProcessor. Definition at line 60 of file PassThrough.h. |
|
|
Do something with your incoming_ data.
Implements strmod::strmod::StreamProcessor. Definition at line 75 of file PassThrough.h. |
|
|
Globally unique identifier for this class. Every class that might need to be identified should have a public static const identifier object in it. Reimplemented from strmod::strmod::StreamProcessor. |
1.3-rc1