lazMapViewer: Remove dependence on synapse

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6308 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-04-16 15:15:27 +00:00
parent c76a4f904a
commit 60e3e16e2d
9 changed files with 313 additions and 165 deletions

View File

@@ -24,20 +24,21 @@ interface
uses
Classes, SysUtils;
Type
{ TCustomDownloadEngine }
type
TCustomDownloadEngine = class(TComponent)
{ TMvCustomDownloadEngine }
TMvCustomDownloadEngine = class(TComponent)
public
procedure DownloadFile(const Url: string; str: TStream); virtual;
procedure DownloadFile(const Url: string; AStream: TStream); virtual;
end;
implementation
{ TCustomDownloadEngine }
{ TMvCustomDownloadEngine }
procedure TCustomDownloadEngine.DownloadFile(const Url: string; str: TStream);
procedure TMvCustomDownloadEngine.DownloadFile(const Url: string; AStream: TStream);
begin
end;