#include <WizardShell.h>

Public Member Functions | |
| WizardShell () | |
| ~WizardShell () | |
| bool | getOutputSpecification (PlugInArgList *&pArgList) |
This class represents the shell for a wizard plug-in. Wizard developers would take this class and extend it to support their wizard specific code.
Definition at line 25 of file WizardShell.h.
| WizardShell::WizardShell | ( | ) |
Creates a wizard plug-in.
The constructor sets the plug-in type to PlugInManagerServices::WizardType().
| WizardShell::~WizardShell | ( | ) |
Destroys the wizard plug-in.
| bool WizardShell::getOutputSpecification | ( | PlugInArgList *& | pArgList | ) | [virtual] |
Retrieves the plug-in output parameters.
This method queries the plug-in for its output parameters that are created during execution. The output arguments may be different in interactive mode and batch mode.
| pArgList | A plug-in arg list pointer that is set to a created output argument list specifying the plug-in output parameters. NULL is a valid pointer value if the plug-in does not provide any output arguments. |
Implements Executable.