2018-04-16 15:33:23 +00:00
|
|
|
unit mvMapViewerReg;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R mvmapviewer_icons.res}
|
|
|
|
|
|
|
|
uses
|
2019-01-23 18:07:52 +00:00
|
|
|
mvTypes, mvGeoNames, mvMapViewer, mvDLEFpc;
|
2018-04-16 15:33:23 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2019-01-23 18:07:52 +00:00
|
|
|
RegisterComponents(PALETTE_PAGE, [TMapView]);
|
|
|
|
RegisterComponents(PALETTE_PAGE, [TMvGeoNames]);
|
|
|
|
RegisterComponents(PALETTE_PAGE, [TMvDEFpc]);
|
2018-04-16 15:33:23 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|