#include <InternalFunction.h>

Public Member Functions | |
| virtual string | functionName ()=0 |
| InternalFunction () | |
| Parameters | invoke (Parameters &input) |
| virtual | ~InternalFunction () |
Protected Member Functions | |
| virtual void | process (Parameters &input, Parameters &output)=0 |
Interface for a custom internal function
Definition at line 42 of file InternalFunction.h.
| InternalFunction::InternalFunction | ( | ) | [inline] |
Definition at line 45 of file InternalFunction.h.
| virtual InternalFunction::~InternalFunction | ( | ) | [inline, virtual] |
Definition at line 46 of file InternalFunction.h.
| virtual string InternalFunction::functionName | ( | ) | [pure virtual] |
Implemented in SomeFunction.
| Parameters InternalFunction::invoke | ( | Parameters & | input | ) | [inline] |
Definition at line 48 of file InternalFunction.h.
| virtual void InternalFunction::process | ( | Parameters & | input, |
| Parameters & | output | ||
| ) | [protected, pure virtual] |
Implemented in SomeFunction.