Public Member Functions |
| ExportModule (AlgorithmContext context) |
virtual | ~ExportModule () |
virtual bool | exportGraph (std::ostream &os) |
| The export operations should take place here.
|
virtual _DEPRECATED bool | exportGraph (std::ostream &, Graph *) |
| 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.
|
Interface for exportModule plug-ins.