You've already forked lazarus-ccr
31 lines
620 B
ObjectPascal
31 lines
620 B
ObjectPascal
![]() |
|
||
|
{**********************************************************************
|
||
|
Package industrial Lazarus
|
||
|
|
||
|
This unit is part of Lazarus Project
|
||
|
***********************************************************************}
|
||
|
|
||
|
unit AllIndustrialRegister;
|
||
|
|
||
|
interface
|
||
|
|
||
|
|
||
|
uses
|
||
|
Classes, LResources, AdvLed, IndLed, LedNumber, Sensors, IndGnouMeter;
|
||
|
|
||
|
procedure Register;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R industrial_icons.res}
|
||
|
|
||
|
//==========================================================
|
||
|
procedure Register;
|
||
|
begin
|
||
|
RegisterComponents ('Industrial',[
|
||
|
TAdvLed, TIndLed, TLedNumber, TStopLightSensor, TAnalogSensor, TindGnouMeter]);
|
||
|
|
||
|
end;
|
||
|
|
||
|
end.
|