ECFactoryBase abstract class. More...
#include <ECFactory.h>
Public Member Functions | |
virtual ExecutionContextBase * | create ()=0 |
Pure virtual function to create ExecutionContext. More... | |
virtual void | destroy (ExecutionContextBase *comp)=0 |
Pure virtual function to destroy ExecutionContext. More... | |
virtual const char * | name ()=0 |
Pure virtual function to get names of creation target ExecutionContext. More... | |
virtual | ~ECFactoryBase (void) |
Virtual destructor. More... | |
ECFactoryBase abstract class.
This is the abstruct Factory classes for ExecutionContext creation. Concrete classes for each ExecutionContext creation must implement the following pure virtual functions.
This class provides the following public interfaces.
Definition at line 115 of file ECFactory.h.
|
inlinevirtual |
|
pure virtual |
Pure virtual function to create ExecutionContext.
Pure virtual function to create ExecutionContext's instances.
Implemented in RTC::ECFactoryCXX.
|
pure virtual |
Pure virtual function to destroy ExecutionContext.
Pure virtual function to destroy ExecutionContext's instances.
comp | The target ExecutionContext's instances for destruction |
Implemented in RTC::ECFactoryCXX.
|
pure virtual |
Pure virtual function to get names of creation target ExecutionContext.
Pure virtual function to get names of the target ExecutionContext for creation.
Implemented in RTC::ECFactoryCXX.