17 lines
286 B
ObjectPascal
17 lines
286 B
ObjectPascal
|
|
unit uEWOTANewModuleExpert;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
{$IFDEF DELPHI5}DsgnIntf,{$ENDIF}
|
||
|
|
{$IFDEF DELPHI6UP}DesignEditors,{$ENDIF}
|
||
|
|
ToolsAPI, Classes, uEWOTARepositoryExpert;
|
||
|
|
|
||
|
|
type
|
||
|
|
TEWNewModuleExpert = class(TEWRepositoryExpert, IOTAFormWizard)
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|