Files
lazarus-ccr/components/iosdesigner/iosdesigner.pas

23 lines
452 B
ObjectPascal
Raw Normal View History

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit iOSDesigner;
interface
uses
iOSNIBDesigner, iOS_Views, iOSIdeIntf, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('iOSNIBDesigner', @iOSNIBDesigner.Register);
RegisterUnit('iOSIdeIntf', @iOSIdeIntf.Register);
end;
initialization
RegisterPackage('iOSDesigner', @Register);
end.