2015-01-17 22:57:23 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
|
|
|
unit laz_fpspreadsheetexport_visual;
|
|
|
|
|
2016-03-15 12:29:58 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2015-01-17 22:57:23 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
fpsexport, fpsexportreg, LazarusPackageIntf;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterUnit('fpsexportreg', @fpsexportreg.Register);
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('laz_fpspreadsheetexport_visual', @Register);
|
|
|
|
end.
|