2016-12-28 18:43:45 +00:00
|
|
|
|
|
|
|
{**********************************************************************
|
|
|
|
Package industrial Lazarus
|
|
|
|
|
|
|
|
This unit is part of Lazarus Project
|
|
|
|
***********************************************************************}
|
|
|
|
|
|
|
|
unit AllIndustrialRegister;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
2018-07-11 17:45:20 +00:00
|
|
|
Classes, LResources, AdvLed, IndLed, LedNumber, Sensors, IndGnouMeter,
|
|
|
|
A3nalogGauge;
|
2016-12-28 18:43:45 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R industrial_icons.res}
|
|
|
|
|
|
|
|
//==========================================================
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterComponents ('Industrial',[
|
2018-07-11 17:45:20 +00:00
|
|
|
TAdvLed, TIndLed, TLedNumber, TStopLightSensor,
|
|
|
|
TAnalogSensor, TA3nalogGauge, TindGnouMeter
|
|
|
|
]);
|
2016-12-28 18:43:45 +00:00
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|