ide: Forgot to add file in r58409 #085797a364

git-svn-id: trunk@58410 -
This commit is contained in:
joost 2018-06-25 21:58:25 +00:00
parent 085797a364
commit 0af470d62f
2 changed files with 26 additions and 0 deletions

1
.gitattributes vendored
View File

@ -1988,6 +1988,7 @@ components/ideintf/filefilterpropeditor.lfm svneol=native#text/plain
components/ideintf/filefilterpropeditor.pas svneol=native#text/pascal
components/ideintf/formeditingintf.pas svneol=native#text/pascal
components/ideintf/fpmake.pp svneol=native#text/plain
components/ideintf/fppkgintf.pas svneol=native#text/pascal
components/ideintf/frmselectprops.lfm svneol=native#text/plain
components/ideintf/frmselectprops.pas svneol=native#text/plain
components/ideintf/graphicpropedit.lfm svneol=native#text/plain

View File

@ -0,0 +1,25 @@
unit FppkgIntf;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils;
type
TFppkgInterface = class
protected
function GetInstallFPMakeDependencies: Boolean; virtual; abstract;
public
property InstallFPMakeDependencies: Boolean read GetInstallFPMakeDependencies;
end;
var
FppkgInterface: TFppkgInterface = nil;
implementation
end.