2018-04-16 13:59:19 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
|
|
|
unit lazMapViewerPkg;
|
|
|
|
|
2019-05-15 09:36:08 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2018-04-16 13:59:19 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2019-03-22 23:15:55 +00:00
|
|
|
mvCache, mvDownloadEngine, mvDragObj, mvEngine, mvGeoNames, mvGpsObj,
|
|
|
|
mvJobQueue, mvJobs, mvMapProvider, mvTypes, mvMapViewer, mvExtraData,
|
2019-05-18 09:52:46 +00:00
|
|
|
mvDLEFpc, mvMapViewerReg, mvGPX, mvDrawingEngine, mvDEIntfGraphics,
|
|
|
|
LazarusPackageIntf;
|
2018-04-16 13:59:19 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2018-04-16 15:33:23 +00:00
|
|
|
RegisterUnit('mvMapViewerReg', @mvMapViewerReg.Register);
|
2018-04-16 13:59:19 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('lazMapViewerPkg', @Register);
|
|
|
|
end.
|