home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 October
/
Chip_2002-10_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d56
/
FLEXCEL.ZIP
/
XLSAdapter
/
Inc
/
TSSTImp.inc
< prev
next >
Wrap
Text File
|
2002-06-24
|
805b
|
26 lines
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Do not modify by hand //
//************************************************************************************//
function TSST.GetItems(index: integer): TSSTEntry;
begin
Result := inherited Items[Index] as TSSTEntry;
end;
procedure TSST.SetItems(index: integer; const Value: TSSTEntry);
begin
inherited Items[Index] := Value;
end;
function TSST.Add(aRecord: TSSTEntry):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TSST.Insert(Index: Integer; ARecord:TSSTEntry);
begin
inherited Insert(Index, ARecord);
end;