|
Nymph
v1.5.2
Flow-Based Data Processing Framework
|
#include <KTTestProcessor.hh>

Public Member Functions | |
| KTTestProcessorB () | |
| virtual | ~KTTestProcessorB () |
| bool | Configure (const scarab::param_node &node) |
| Should perform parameter store and command-line configurations. More... | |
| void | Slot1 (int) |
| void | Slot2 (int) |
Public Member Functions inherited from KTProcessor | |
| KTProcessor (const std::string &name="default-proc-name") | |
| virtual | ~KTProcessor () |
| void | ConnectASlot (const std::string &signalName, KTProcessor *processor, const std::string &slotName, int groupNum=-1) |
| void | ConnectASignal (KTProcessor *processor, const std::string &signalName, const std::string &slotName, int groupNum=-1) |
| void | ConnectSignalToSlot (KTSignalWrapper *signal, KTSlotWrapper *slot, int groupNum=-1) |
| template<class XProcessor > | |
| void | RegisterSignal (std::string name, XProcessor *signalPtr) |
| template<class XTarget , typename XReturn > | |
| void | RegisterSlot (std::string name, XTarget *target, XReturn(XTarget::*funcPtr)()) |
| template<class XTarget , typename XReturn , typename XArg1 > | |
| void | RegisterSlot (std::string name, XTarget *target, XReturn(XTarget::*funcPtr)(XArg1)) |
| template<class XTarget , typename XReturn , typename XArg1 , typename XArg2 > | |
| void | RegisterSlot (std::string name, XTarget *target, XReturn(XTarget::*funcPtr)(XArg1, XArg2)) |
| KTSignalWrapper * | GetSignal (const std::string &name) |
| KTSlotWrapper * | GetSlot (const std::string &name) |
| template<typename XSignalSig > | |
| void | RegisterSignal (std::string name, XSignalSig *signalPtr) |
Public Member Functions inherited from KTConfigurable | |
| KTConfigurable (const std::string &name="default-name") | |
| virtual | ~KTConfigurable () |
| bool | Configure (const std::string &config) |
| Implement the option for calling Configure without passing a parameter store node. More... | |
| const std::string & | GetConfigName () const |
| void | SetConfigName (const std::string &name) |
Additional Inherited Members | |
Protected Types inherited from KTProcessor | |
| typedef std::map< std::string, KTSignalWrapper *> | SignalMap |
| typedef SignalMap::iterator | SigMapIt |
| typedef SignalMap::value_type | SigMapVal |
| typedef std::map< std::string, KTSlotWrapper *> | SlotMap |
| typedef SlotMap::iterator | SlotMapIt |
| typedef SlotMap::value_type | SlotMapVal |
Protected Attributes inherited from KTProcessor | |
| SignalMap | fSignalMap |
| SlotMap | fSlotMap |
Protected Attributes inherited from KTConfigurable | |
| KTCommandLineHandler * | fCLHandler |
| std::string | fConfigName |
Definition at line 34 of file KTTestProcessor.hh.
| KTTestProcessorB | ( | ) |
Definition at line 40 of file KTTestProcessor.cc.
|
virtual |
Definition at line 46 of file KTTestProcessor.cc.
|
virtual |
Should perform parameter store and command-line configurations.
Implements KTConfigurable.
Definition at line 50 of file KTTestProcessor.cc.
| void Slot1 | ( | int | input | ) |
Definition at line 55 of file KTTestProcessor.cc.
| void Slot2 | ( | int | input | ) |
Definition at line 61 of file KTTestProcessor.cc.
1.8.13