2014-10-13 14:00:46 +00:00
|
|
|
{
|
|
|
|
Registration for fpsexport into the Lazarus component palette
|
|
|
|
This requires package lazdbexport for property editors etc
|
|
|
|
}
|
|
|
|
unit fpsexportreg;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-08-09 22:52:49 +00:00
|
|
|
Classes, SysUtils, LazarusPackageIntf, lresources;
|
2014-10-13 14:00:46 +00:00
|
|
|
|
2014-10-16 14:22:45 +00:00
|
|
|
procedure Register;
|
2014-10-13 14:00:46 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
fpsexport;
|
|
|
|
|
2014-10-16 14:22:45 +00:00
|
|
|
{@@ ----------------------------------------------------------------------------
|
|
|
|
Registers the export component in the Lazarus component palette,
|
|
|
|
page "Data Export".
|
|
|
|
-------------------------------------------------------------------------------}
|
|
|
|
procedure Register;
|
2014-10-13 14:00:46 +00:00
|
|
|
begin
|
2018-01-01 17:37:15 +00:00
|
|
|
RegisterComponents('Data Export', [TFPSExport]);
|
2014-10-13 14:00:46 +00:00
|
|
|
end;
|
|
|
|
|
2018-01-01 17:37:15 +00:00
|
|
|
initialization
|
|
|
|
{$I fpsexportimg.lrs}
|
|
|
|
|
2014-10-13 14:00:46 +00:00
|
|
|
end.
|
|
|
|
|