mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 18:39:10 +02:00
ide: Forgot to add file in r58409 #085797a364
git-svn-id: trunk@58410 -
This commit is contained in:
parent
085797a364
commit
0af470d62f
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1988,6 +1988,7 @@ components/ideintf/filefilterpropeditor.lfm svneol=native#text/plain
|
|||||||
components/ideintf/filefilterpropeditor.pas svneol=native#text/pascal
|
components/ideintf/filefilterpropeditor.pas svneol=native#text/pascal
|
||||||
components/ideintf/formeditingintf.pas svneol=native#text/pascal
|
components/ideintf/formeditingintf.pas svneol=native#text/pascal
|
||||||
components/ideintf/fpmake.pp svneol=native#text/plain
|
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.lfm svneol=native#text/plain
|
||||||
components/ideintf/frmselectprops.pas svneol=native#text/plain
|
components/ideintf/frmselectprops.pas svneol=native#text/plain
|
||||||
components/ideintf/graphicpropedit.lfm svneol=native#text/plain
|
components/ideintf/graphicpropedit.lfm svneol=native#text/plain
|
||||||
|
25
components/ideintf/fppkgintf.pas
Normal file
25
components/ideintf/fppkgintf.pas
Normal 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.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user