Changeset 323 for trunk/Packages/CoolStreaming/TextFileStream.pas
- Timestamp:
- Jun 25, 2024, 1:34:07 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CoolStreaming/TextFileStream.pas
r322 r323 1 // TTextFileStream class by Chronos 12.9.2005 2 // Homepage: http://jirihajda.zdechov.net/ 3 4 unit UTextFileStream; 5 6 {$mode Delphi}{$H+} 1 unit TextFileStream; 7 2 8 3 interface 9 4 10 uses Classes, SysUtils; 5 uses 6 Classes, SysUtils; 11 7 12 8 type … … 15 11 private 16 12 FBuffer: string; 17 protected18 19 13 public 20 14 function Eof: Boolean; … … 24 18 function RowsCount: Integer; 25 19 end; 20 26 21 27 22 implementation
Note:
See TracChangeset
for help on using the changeset viewer.