#include <algorithmImport.h>
Inheritance diagram for algorithmImport:
Public Methods | |
algorithmImport (T* t, ptr_mem run) | |
constructor - set the template and the member function to run. | |
~algorithmImport () | |
default destructor. | |
virtual void | execute () |
execute as algorithm the member function of the template class. | |
Private Types | |
typedef void (T::* | ptr_mem )() |
Private Attributes | |
T* | m_t |
pointer to the template. | |
ptr_mem | m_run |
pointer to the template member function. |
|
|
constructor - set the template and the member function to run.
Definition at line 15 of file algorithmImport.h.
|
|
execute as algorithm the member function of the template class.
Reimplemented from algorithmVI.
Definition at line 20 of file algorithmImport.h.
|
|