2010-05-01 18:10:38 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
2009-10-06 19:25:18 +00:00
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
2014-11-03 15:34:57 +00:00
|
|
|
unit laz_fpspreadsheet_visual;
|
2009-10-06 19:25:18 +00:00
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2014-11-10 13:05:28 +00:00
|
|
|
fpspreadsheetctrls, fpspreadsheetgrid, fpspreadsheetchart, fpsActions,
|
|
|
|
LazarusPackageIntf;
|
2009-10-06 19:25:18 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2014-11-03 15:34:57 +00:00
|
|
|
procedure Register;
|
2009-10-06 19:25:18 +00:00
|
|
|
begin
|
2014-11-03 15:34:57 +00:00
|
|
|
RegisterUnit('fpspreadsheetctrls', @fpspreadsheetctrls.Register);
|
|
|
|
RegisterUnit('fpspreadsheetgrid', @fpspreadsheetgrid.Register);
|
|
|
|
RegisterUnit('fpspreadsheetchart', @fpspreadsheetchart.Register);
|
2014-11-10 13:05:28 +00:00
|
|
|
RegisterUnit('fpsactions', @fpsactions.Register);
|
2014-11-03 15:34:57 +00:00
|
|
|
end;
|
2009-10-06 19:25:18 +00:00
|
|
|
|
|
|
|
initialization
|
2014-11-03 15:34:57 +00:00
|
|
|
RegisterPackage('laz_fpspreadsheet_visual', @Register);
|
2009-10-06 19:25:18 +00:00
|
|
|
end.
|