IdeIntf: Add an initial TOPMInterface in PackageLinksIntf.

git-svn-id: trunk@56435 -
This commit is contained in:
juha 2017-11-18 15:50:53 +00:00
parent e9e34f5965
commit 473d851d87

View File

@ -99,8 +99,16 @@ type
procedure RemoveUserLinks(APackageID: TLazPackageID); virtual; abstract;
end;
{ TOPMInterface }
TOPMInterface = class
public
function InstallPackage(APkgLink: TPackageLink): Boolean; virtual; abstract;
end;
var
PkgLinks: TPackageLinks;
OPMInterface: TOPMInterface;
function IsUrl(const AText: string): Boolean;