-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSMS_DS.~pas
1338 lines (1070 loc) · 25 KB
/
SMS_DS.~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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit SMS_DS;
interface
uses
SysUtils, Classes, SyncObjs;
type
TLinkedListData = record
pData : Pointer;
Before : Pointer;
Next : Pointer;
end;
PLinkedListData = ^TLinkedListData;
TLinkedList = class
private
FDuplicatedCount: Integer;
function GetFirst: PLinkedListData;
function GetLast: PLinkedListData;
protected
//FEvent : TEvent;
FList : TList;
FDelta : Integer;
FAdding : Boolean;
FCriticalSection : TCriticalSection;
public
TotalAddCount : Integer;
TotalRemoveCount : Integer;
Removing : Boolean;
constructor Create;
destructor Destroy; override;
procedure Clear;
function Add : PLinkedListData;
procedure RemoveFirst;
procedure Remove(pTarget: Pointer);
// procedure RemoveBefore(pTarget: PLinkedListData);
property Delta : Integer read FDelta write FDelta;
property List : TList read FList;
property First : PLinkedListData read GetFirst;
property Last : PLinkedListData read GetLast;
//property LastMessage : String read FLastMessage;
property DuplicatedCount : Integer read FDuplicatedCount;
end;
TListCollectionItem = class(TCollectionItem)
private
public
//
Data : TObject;
Key : String;
List : TList;
//
constructor Create(aColl: TCollection); override;
destructor Destroy; override;
end;
TListCollectionItemClass = class of TListCollectionItem;
//uses
// TradeManager ¿¡¼ Sending Box ·Î ÀÌ¿ë
TListCollection = class
private
FCollection : TCollection;
FBaseClass : TListCollectionItemClass;
function GetList(i: Integer): TListCollectionItem;
function GetListCount: Integer;
function GetTotalCount: Integer;
public
constructor Create; overload;
constructor Create(aItemClass : TListCollectionItemClass); overload;
destructor Destroy; override;
function FindList(const aData: TObject): TListCollectionItem; overload;
function FindList(const stKey: String): TListCollectionItem; overload;
function FindList(const stKey: String; const aData: TObject): TListCollectionItem; overload;
//
function AddItem(aData: TObject): TListCollectionItem; overload;
function AddItem(stKey: String): TListCollectionItem; overload;
procedure Clear;
property List[i: Integer]: TListCollectionItem read GetList;
property ListCount : Integer read GetListCount;
//
property TotalCount : Integer read GetTotalCount;
end;
TMLStringList = class
private
FChilds : TList;
FParent: TMLStringList;
function GetChild(i:Integer): TMLStringList;
function GetCount: Integer;
public
Data : String;
Data2 : String;
constructor Create;
destructor Destroy; override;
function Add : TMLStringList;
procedure Clear;
property Parent : TMLStringList read FParent;
property Childs[i:Integer]: TMLStringList read GetChild;
property Count: Integer read GetCount;
end;
PStringLinkedListItem = ^TStringLinkedListItem;
TStringLinkedListItem = record
FString : String;
Before : PStringLinkedListItem;
Next : PStringLinkedListItem;
end;
TStringLinkedList = class(TLinkedList)
private
//FDuplicatedCount: Integer;
//function GetFirst: PLinkedListData;
//function GetLast: PLinkedListData;
protected
//FEvent : TEvent;
//FList : TList;
//FDelta : Integer;
//FAdding : Boolean;
//FCriticalSection : TCriticalSection;
public
//TotalAddCount : Integer;
//TotalRemoveCount : Integer;
//Removing : Boolean;
//constructor Create;
//destructor Destroy; override;
//procedure Clear;
procedure Add(stData: String);
//procedure RemoveFirst;
//procedure Remove(pTarget: Pointer);
// procedure RemoveBefore(pTarget: PLinkedListData);
//property Delta : Integer read FDelta write FDelta;
//property List : TList read FList;
//property First : PLinkedListData read GetFirst;
//property Last : PLinkedListData read GetLast;
//property LastMessage : String read FLastMessage;
//property DuplicatedCount : Integer read FDuplicatedCount;
end;
TRecordItem = record
end;
TRecordItemList = array[0..MaxListSize] of TRecordItem;
PRecordItemList = ^TRecordItemList;
TRecordList = class
protected
FCount : Integer;
FCapacity : Integer;
procedure Grow;
procedure SetCapacity(NewCapacity: Integer); virtual;
function Add: Pointer; virtual;
procedure Clear; virtual;
public
constructor Create;
destructor Destroy; override;
property Count : Integer read FCount;
property Capacity : Integer read FCapacity write SetCapacity;
end;
TCommonCollectionItem = class(TCollectionItem)
public
KeyByString : String;
KeyByInt : Integer;
KeyByObject : TObject;
//
Key2ByString : String;
Key2ByInt : Integer;
Key2ByObject : TObject;
procedure Assign(aSource: TPersistent); override;
end;
TCommonCollectionItemClass = class of TCommonCollectionItem;
TCommonCollection = class(TCollection)
private
FName: String;
// FItems : TCollection;
public
constructor Create(aItemClass: TCommonCollectionItemClass); virtual;
destructor Destroy; override;
function FindItem(const aKeyObject : TObject): TCommonCollectionItem; overload;
function FindItem(const iKeyInt : Integer): TCommonCollectionItem; overload;
function FindItem(const stKey : String): TCommonCollectionItem; overload;
//
function FindItem(const iKeyInt, iKeyInt2 : Integer): TCommonCollectionItem; overload;
function FindItem(const iKeyInt, iKeyInt2 : Integer; var iP: Integer): TCommonCollectionItem; overload;
function FindItem(const stKey, stKey2 : String): TCommonCollectionItem; overload;
function FindItem(const aKeyObject: TObject;
const iKeyInt, iKeyInt2 : Integer): TCommonCollectionItem; overload;
property Name : String read FName write FName;
end;
TOHLCItem = class(TCommonCollectionItem)
public
Open : Double;//Single;//
Close : Double;//Single;//
High : Double; //Single;//
Low : Double; //Single;//
end;
TTOHLCItem = class(TOHLCItem)
public
T : TDateTime;
V : Integer;
LValue1 : Integer;
end;
TBarMatrixItem = class(TCommonCollectionItem)
private
FBarCollection : TCommonCollection;
//
function GetBars(i: Integer): TTOHLCItem;
function GetBarCount: Integer;
public
//
//
Tag : Integer;
//
procedure Initialize; virtual;
//procedure InitValues; virtual;
//
constructor Create(Collection: TCollection); override;
destructor Destroy; override;
//
function AddTOHLCItem: TTOHLCItem;
//
property Bars[i: Integer]: TTOHLCItem read GetBars; default;
property BarCount : Integer read GetBarCount;
end;
TBarMatrixItemClass = class of TBarMatrixItem;
TBarMatrix = class(TCommonCollection)
public
constructor Create; overload;
constructor Create(aClass : TBarMatrixItemClass); overload;
destructor Destroy; override;
procedure SaveToFile(const stFileName: String);
procedure Initialize;
//procedure InitValues;
end;
TManagerCollection = class(TCommonCollection)
public
Path : String;
RefCount : Cardinal;
AutoSave : Boolean;
procedure IncRef;
procedure DecRef;
procedure Save; virtual;
procedure Load; virtual;
constructor Create(aItemClass: TCommonCollectionItemClass); override;
destructor Destroy; override;
end;
TArrayDataList = class
protected
FCount : Integer;
FCapacity : Integer;
procedure Grow;
procedure SetCapacity(const NewCapacity: Integer); virtual;
public
destructor Destroy; override;
property Count : Integer read FCount;
procedure Clear; virtual;
end;
TTermRec = {$IFNDEF DoubleSize} packed {$ENDIF} record
LastTime : TDateTime;
{$IFDEF DoubleSize}
Open, High, Low, Close: Double;
{$ELSE}
Open, High, Low, Close: Single;
{$ENDIF}
Volume: Integer;
OpenInt : LongInt;
{$IFDEF QUOTEX}
{$IFDEF DoubleSize}
BidPrice : Double;
BidQty : Integer;
AskPrice : Double;
AskQty : Integer;
{$ELSE}
BidPrice : Single;
BidQty : Integer;
AskPrice : Single;
AskQty : Integer;
{$ENDIF}
{$ENDIF}
end;
PTermRec = ^TTermRec;
TTermInsertEvent = procedure(const Sender: TObject;const bLast: Boolean;
const aTerm: TTermRec) of object;
TTermItem = class(TCollectionItem)
public
DataRec : TTermRec;
end;
TBarItem = class(TCollectionItem)
public
T : TDateTime;
{$IFDEF DoubleSize}
O, H, L, C: Double;
{$ELSE}
O, H, L, C: Single;
{$ENDIF}
V : Double;
OI : LongInt;//Double;
RefCount : Integer;
EtcData : String;
{$IFDEF QUOTEX}
Term : TTermRec;
{$ENDIF}
procedure Assign(aSource: TPersistent); override;
end;
TBarItems = class(TCollection)
public
Symbol : String;
function FindIntraDayItem(dTime: TDateTime): TBarItem;
constructor Create;
end;
implementation
uses DateUtils;
procedure TBarItem.Assign(aSource: TPersistent);
var
aSourceItem : TBarItem;
begin
aSourceItem := aSource as TBarItem;
T := aSourceItem.T;
O := aSourceItem.O;
H := aSourceItem.H;
L := aSourceItem.L;
C := aSourceItem.C;
V := aSourceItem.V;
OI := aSourceItem.OI;
end;
{ TLinkedList }
function TLinkedList.Add: PLinkedListData;
var
pNewData, pLastData : PLinkedListData;
begin
//
FCriticalSection.Enter;
if FAdding then
Inc(FDuplicatedCount);
FAdding := True;
try
if Removing then
begin
Inc(FDuplicatedCount);
end;
if FList.Count > 0 then
pLastData := FList[FList.Count-1]
else
pLastData := nil;
New(pNewData);
pNewData^.pData := nil;
pNewData^.Before := nil;
pNewData^.Next := nil;
pNewData^.Before := pLastData;
//
if FList.Count mod FDelta = 0 then
FList.Capacity := FList.Count + FDelta;
if pLastData <> nil then
pLastData^.Next := pNewData;
FList.Add(pNewData);
//
Inc(TotalAddCount);
Result := pNewData;
finally
FAdding := False;
FCriticalSection.Leave;
end;
end;
procedure TLinkedList.Clear;
var
i : Integer;
begin
for i := 0 to FList.Count-1 do
Dispose(FList[i]);
//
FList.Clear;
FList.Capacity := 0;
end;
constructor TLinkedList.Create;
begin
//FEvent := TEvent.Create(nil, False, False, '');
FCriticalSection := TCriticalSection.Create;
FList := TList.Create;
FDelta := 100;
TotalAddCount := 0;
TotalRemoveCount := 0;
FDuplicatedCount := 0;
FAdding := False;
end;
destructor TLinkedList.Destroy;
begin
Clear;
FList.Free;
//FEvent.Free;
FCriticalSection.Free;
inherited;
end;
function TLinkedList.GetFirst: PLinkedListData;
begin
Result := nil;
//
if FList.Count > 0 then
Result := PLinkedListData(FList.Items[0]);
end;
function TLinkedList.GetLast: PLinkedListData;
begin
Result := nil;
//
if FList.Count > 0 then
Result := PLinkedListData(FList.Items[FList.Count-1]);
end;
procedure TLinkedList.Remove(pTarget: Pointer);
var
pData, pNextData, pBefore : PLinkedListData;
begin
FCriticalSection.Enter;
Removing := True;
try
pData := pTarget;
pNextData := pData.Next;
if pNextData <> nil then
pNextData.Before := pData.Before;
pBefore := pData.Before;
if pBefore <> nil then
pBefore.Next := pNextData;
FList.Remove(pTarget);
Dispose(pTarget);
Inc(TotalRemoveCount);
finally
Removing := False;
FCriticalSection.Leave;
end;
end;
{
procedure TLinkedList.RemoveBefore(pTarget: PLinkedListData);
var
pPreCurrent, pCurrent : PLinkedListData;
begin
pCurrent := pTarget;
while (pCurrent <> nil) do
begin
try
pPreCurrent := pCurrent;
finally
pCurrent := pCurrent.Before;
Remove(pPreCurrent);
end;
end;
end;
}
procedure TLinkedList.RemoveFirst;
begin
if FList.Count = 0 then Exit;
//
FCriticalSection.Enter;
Removing := True;
try
Dispose(FList.Items[0]);
FList.Delete(0);
Inc(TotalRemoveCount);
finally
Removing := False;
FCriticalSection.Leave;
end;
end;
{ TListCollection }
function TListCollection.AddItem(aData: TObject): TListCollectionItem;
begin
Result := FCollection.Add as FBaseClass;
Result.Data := aData;
end;
function TListCollection.AddItem(stKey: String): TListCollectionItem;
var
i : Integer;
aItem : TListCollectionItem;
begin
//
for i := 0 to FCollection.Count-1 do
begin
aItem := FCollection.Items[i] as TListCollectionItem;
if CompareText(aItem.Key, stKey) = 0 then
begin
Result := aItem;
Exit;
end;
end;
//
Result := FCollection.Add as TListCollectionItem;
Result.Key := stKey;
end;
procedure TListCollection.Clear;
begin
FCollection.Clear;
end;
constructor TListCollection.Create;
begin
FCollection := TCollection.Create(TListCollectionItem);
FBaseClass := TListCollectionItem;
end;
constructor TListCollection.Create(aItemClass: TListCollectionItemClass);
begin
FCollection := TCollection.Create(aItemClass);
FBaseClass := aItemClass;
end;
destructor TListCollection.Destroy;
begin
FCollection.Free;
end;
function TListCollection.FindList(const aData: TObject): TListCollectionItem;
var
i : Integer;
aItem : TListCollectionItem;
begin
Result := nil;
//
if aData = nil then Exit;
//
for i := 0 to FCollection.Count-1 do
begin
aItem := FCollection.Items[i] as TListCollectionItem;
if aItem.Data = aData then
begin
Result := aItem;
Break;
end;
end;
end;
function TListCollection.FindList(const stKey: String): TListCollectionItem;
var
i : Integer;
aItem : TListCollectionItem;
begin
Result := nil;
//
for i := 0 to FCollection.Count-1 do
begin
aItem := FCollection.Items[i] as TListCollectionItem;
if CompareStr(aItem.Key, stKey) = 0 then
begin
Result := aItem;
Break;
end;
end;
end;
function TListCollection.FindList(const stKey: String;
const aData: TObject): TListCollectionItem;
var
i : Integer;
aItem : TListCollectionItem;
begin
Result := nil;
//
for i := 0 to FCollection.Count-1 do
begin
aItem := FCollection.Items[i] as TListCollectionItem;
if (CompareStr(aItem.Key, stKey) = 0) and (aItem.Data = aData) then
begin
Result := aItem;
Break;
end;
end;
end;
function TListCollection.GetList(i: Integer): TListCollectionItem;
begin
Result := nil;
//
if (i>=0) and (i<FCollection.Count) then
Result := FCollection.Items[i] as TListCollectionItem;
end;
function TListCollection.GetListCount: Integer;
begin
Result := FCollection.Count;
end;
function TListCollection.GetTotalCount: Integer;
var
i : Integer;
aCollectionItem : TListCollectionItem;
begin
//
Result := 0;
//
for i := 0 to FCollection.Count-1 do
begin
aCollectionItem := FCollection.Items[i] as TListCollectionItem;
//
Inc(Result, aCollectionItem.List.Count);
end;
end;
{ TListCollectionItem }
constructor TListCollectionItem.Create(aColl: TCollection);
begin
inherited Create(aColl);
List := TList.Create;
end;
destructor TListCollectionItem.Destroy;
begin
List.Free;
inherited;
end;
{ TMLStringList }
function TMLStringList.Add: TMLStringList;
begin
Result := TMLStringList.Create;
Result.FParent := Self;
FChilds.Add(Result);
end;
procedure TMLStringList.Clear;
var
i : Integer;
begin
for i := Count-1 downto 0 do
begin
Childs[i].Free;
end;
FChilds.Clear;
end;
constructor TMLStringList.Create;
begin
FChilds := TList.Create;
end;
destructor TMLStringList.Destroy;
var
i : Integer;
begin
for i := FChilds.Count-1 downto 0 do
TObject(FChilds.Items[i]).Free;
FChilds.Free;
end;
function TMLStringList.GetChild(i:Integer): TMLStringList;
begin
Result := nil;
//
if (i >= 0) and (i < FChilds.Count) then
Result := TMLStringList(FChilds.Items[i]);
end;
function TMLStringList.GetCount: Integer;
begin
Result := FChilds.Count;
end;
{ TStringLinkedList }
procedure TStringLinkedList.Add(stData: String);
var
pLastData, pNewData : PStringLinkedListItem;
begin
//
if FList.Count > 0 then
pLastData := FList[FList.Count-1]
else
pLastData := nil;
//pNewData := nil;
//ReallocMem(pNewData, SizeOf(TStringLinkedListItem));
New(pNewData);
pNewData^.Before := nil;
pNewData^.Next := nil;
pNewData.FString := stData;
if pLastData <> nil then
pLastData^.Next := pNewData;
pNewData^.Before := pLastData;
//
if FList.Count mod FDelta = 0 then
FList.Capacity := FList.Count + FDelta;
FList.Add(pNewData);
//
//Result := pNewData;
end;
{ TRecordList }
function TRecordList.Add: Pointer;
begin
Result := nil;
(*
if FCount = FCapacity then Grow;
Result := @FList[FCount];
//
Inc(FCount);
*)
end;
procedure TRecordList.Clear;
begin
(*
if FCount <> 0 then
begin
Finalize(FList^[0], FCount);
FCount := 0;
SetCapacity(0);
end;
*)
end;
constructor TRecordList.Create;
begin
FCount := 0;
end;
destructor TRecordList.Destroy;
begin
inherited Destroy;
(*
if FCount <> 0 then Finalize(FList^[0], FCount);
FCount := 0;
SetCapacity(0);
*)
end;
procedure TRecordList.Grow;
var
Delta: Integer;
begin
if FCapacity > 64 then Delta := FCapacity div 4 else
if FCapacity > 8 then Delta := 16 else
Delta := 4;
SetCapacity(FCapacity + Delta);
end;
procedure TRecordList.SetCapacity(NewCapacity: Integer);
begin
(*
ReallocMem(FList, NewCapacity * SizeOf(TRecordItem));
FCapacity := NewCapacity;
*)
end;
{ TCommonCollection }
constructor TCommonCollection.Create(aItemClass: TCommonCollectionItemClass);
begin
inherited Create(aItemClass);
// FItems := TCollection.Create(aItemClass);
end;
destructor TCommonCollection.Destroy;
begin
inherited;
end;
function TCommonCollection.FindItem(
const iKeyInt: Integer): TCommonCollectionItem;
var
i : Integer;
aItem : TCommonCollectionItem;
begin
Result := nil;
//
for i := 0 to Count-1 do
begin
aItem := Items[i] as TCommonCollectionItem;
//
if aItem.KeyByInt = iKeyInt then
begin
Result := aItem;
Break;
end;
end;
end;
function TCommonCollection.FindItem(
const stKey: String): TCommonCollectionItem;
var
i : Integer;
aItem : TCommonCollectionItem;
begin
Result := nil;
//
for i := 0 to Count-1 do
begin
aItem := Items[i] as TCommonCollectionItem;
//
if aItem.KeyByString = Trim(stKey) then
begin
Result := aItem;
Break;
end;
end;
end;
procedure TArrayDataList.Grow;
var
Delta: Integer;
begin
if FCapacity > 64 then
Delta := FCapacity div 4
else
if FCapacity > 8 then
Delta := 16
else
Delta := 4;
SetCapacity(FCapacity + Delta);
end;
procedure TArrayDataList.Clear;
begin
SetCapacity(0);
FCount := 0;
//SetCapacity(20000);
end;
destructor TArrayDataList.Destroy;
begin
Clear;
//
inherited;
end;
procedure TArrayDataList.SetCapacity(const NewCapacity: Integer);
const
PROC_TITLE = 'SetCapacity';
begin
FCapacity := NewCapacity;
end;
function TCommonCollection.FindItem(const iKeyInt,
iKeyInt2: Integer): TCommonCollectionItem;
var
i : Integer;
aItem : TCommonCollectionItem;
begin
Result := nil;
//