-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseClass.pas
94 lines (66 loc) · 1.84 KB
/
BaseClass.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
unit BaseClass;
interface
uses
Classes, Generics.Defaults, Generics.Collections;
type
TResult = (rOK, rFail, rDidNothing);
type
TBaseAbstract = class
private
FId: Integer;
procedure SetId(const Value: Integer);
public
property Id: Integer read FId write SetId;
end;
TStorage = class abstract
public
function Write(const Instance: TBaseAbstract):TResult; virtual; abstract;
function Read(const Instance: TBaseAbstract):TResult; virtual; abstract;
function Delete(const Instance: TBaseAbstract):TResult; virtual; abstract;
end;
type
TBaseClass = class abstract (TBaseAbstract)
public
function Write(const Storage: TStorage):TResult; virtual;
function Read(const Storage: TStorage):TResult; virtual;
function Delete(const Storage: TStorage):TResult; virtual;
end;
TBaseListAbstract = class(TBaseClass);
TBaseList<T: TBaseClass, Constructor> = class(TBaseListAbstract)
type
TElementList = class(TObjectList<T>)
public
function Write(const Storage: TStorage):TResult; override;
function Read(const Storage: TStorage):TResult; override;
function Delete(const Storage: TStorage):TResult; override;
property Items: TElementList read GetElement write SetElement; default;
end;
implementation
{ TBaseAbstract }
procedure TBaseAbstract.SetId(const Value: Integer);
begin
FId := Value;
end;
{ TBaseClass }
function TBaseClass.Delete(const Storage: TStorage): TResult;
begin
end;
function TBaseClass.Read(const Storage: TStorage): TResult;
begin
end;
function TBaseClass.Write(const Storage: TStorage): TResult;
begin
end;
{ TBaseList<T> }
function TBaseList<T>.Delete(const Storage: TStorage): TResult;
var
Element:
begin
end;
function TBaseList<T>.Read(const Storage: TStorage): TResult;
begin
end;
function TBaseList<T>.Write(const Storage: TStorage): TResult;
begin
end;
end.