#include <AbstractModuleGUI.h>


Public Member Functions | |
| AbstractModuleGUI (AbstractModule *module) | |
| virtual | ~AbstractModuleGUI () |
| Descructor. | |
| virtual void | init ()=0 |
| virtual void | destroy ()=0 |
Protected Member Functions | |
| AbstractModule * | getModule () |
Definition at line 9 of file AbstractModuleGUI.h.
| AbstractModuleGUI::AbstractModuleGUI | ( | AbstractModule * | module | ) | [inline] |
| module | Pointer to module for which the gui is for |
Definition at line 15 of file AbstractModuleGUI.h.
| virtual AbstractModuleGUI::~AbstractModuleGUI | ( | ) | [inline, virtual] |
| virtual void AbstractModuleGUI::destroy | ( | ) | [pure virtual] |
Deinit the GUI here (not in the destructor!)
Implemented in DirectionFilterGUI, GestureFinderGUI, HMMModuleGUI, OutputModuleGUI, and SmootherGUI.
| AbstractModule* AbstractModuleGUI::getModule | ( | ) | [inline, protected] |
Definition at line 33 of file AbstractModuleGUI.h.
| virtual void AbstractModuleGUI::init | ( | ) | [pure virtual] |
Init the GUI here (not in the constructor, as the module may not be ready!)
Implemented in DirectionFilterGUI, GestureFinderGUI, HMMModuleGUI, OutputModuleGUI, and SmootherGUI.
1.5.7.1