Repository URL to install this package:
|
Version:
1.6 ▾
|
lazarus
/
usr
/
share
/
lazarus
/
1.6
/
components
/
IndustrialStuff
/
source
/
AllIndustrialRegister.pas
|
|---|
{**********************************************************************
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.