unitSimplReg; // Register the simple wizard. You can do this in the // same unit as the wizard. If you put multiple wizards // in a single package, though, you will probably want to put // each wizard in its own unit, and have a separate unit (like this one) // that just registers the wizards. interface procedure Register; implementation uses ToolsAPI, Simple; procedure Register; begin RegisterPackageWizard(TSimpleWizard.Create); end; end.