Public Member Functions |
| ImportModule (AlgorithmContext context) |
| Initializes the DataSet to the one passed in the context.
|
virtual | ~ImportModule () |
virtual bool | importGraph () |
| The import operations should take place here.
|
virtual _DEPRECATED bool | import (const std::string &) |
| deprecated method.
|
const
tlp::ParameterDescriptionList & | getParameters () |
| Retrieves the parameters.
|
template<typename T > |
void | addInParameter (const char *str, const char *inHelp=0, const char *inDefValue=0, bool isMandatory=true) |
| Adds an IN parameter to the plug-in.
|
template<typename T > |
void | addOutParameter (const char *str, const char *inHelp=0, const char *inDefValue=0, bool isMandatory=true) |
| Adds an OUT parameter to the plug-in.
|
template<typename T > |
void | addInOutParameter (const char *str, const char *inHelp=0, const char *inDefValue=0, bool isMandatory=true) |
| Adds an INOUT parameter to the plug-in.
|
template<typename T > |
void | addParameter (const char *parameterName, const char *help=NULL, const char *defaultValue=NULL, bool isMandatory=true) |
| Adds an IN parameter to the plug-in (deprecated)
|
std::list< Dependency > | getDependencies () |
| Gets the list of Dependencies of this plug-in.
|
template<typename Ty > |
void | addDependency (const char *name, const char *release) |
| Adds a dependency upon another plug-in. The parameters should be null-terminated strings, or NULL.
|
Base class for import plug-ins.