-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathDN.Package.Version.Intf.pas
39 lines (34 loc) · 1.34 KB
/
DN.Package.Version.Intf.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
#########################################################
# Copyright by Alexander Benikowski #
# This unit is part of the Delphinus project hosted on #
# https://github.com/Memnarch/Delphinus #
#########################################################
}
unit DN.Package.Version.Intf;
interface
uses
Generics.Collections,
DN.Types,
DN.Version,
DN.Package.Dependency.Intf;
type
IDNPackageVersion = interface
['{93EA70C0-D7BD-4B9B-9886-210D62FAB05F}']
function GetCompilerMax: TCompilerVersion;
function GetCompilerMin: TCompilerVersion;
function GetName: string;
function GetValue: TDNVersion;
procedure SetCompilerMax(const Value: TCompilerVersion);
procedure SetCompilerMin(const Value: TCompilerVersion);
procedure SetName(const Value: string);
procedure SetValue(const Value: TDNVersion);
function GetDependencies: TList<IDNPackageDependency>;
property Name: string read GetName write SetName;
property Value: TDNVersion read GetValue write SetValue;
property CompilerMin: TCompilerVersion read GetCompilerMin write SetCompilerMin;
property CompilerMax: TCompilerVersion read GetCompilerMax write SetCompilerMax;
property Dependencies: TList<IDNPackageDependency> read GetDependencies;
end;
implementation
end.