You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5565 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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.
|