Difference between revisions of "Classes unit"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 
The '''Classes''' unit is part of the Free Pascal standard [[RTL|Runtime Library]] and contains abstract classes that form the basis for derived classes, and also implements a number of general purpose concrete classes including:
 
The '''Classes''' unit is part of the Free Pascal standard [[RTL|Runtime Library]] and contains abstract classes that form the basis for derived classes, and also implements a number of general purpose concrete classes including:
  
 +
*[[TCollection]]
 
*[[TList]]
 
*[[TList]]
 
*[[TStringList]]
 
*[[TStringList]]
 +
*[[TStream]]
 
*[[TFileStream]]
 
*[[TFileStream]]
 
*[[TStringStream]]
 
*[[TStringStream]]
  
 +
== See also ==
 +
* [[doc:rtl/classes/|classes unit doc]]
  
 
[[Category:RTL]]
 
[[Category:RTL]]

Revision as of 11:33, 19 July 2016

The Classes unit is part of the Free Pascal standard Runtime Library and contains abstract classes that form the basis for derived classes, and also implements a number of general purpose concrete classes including:

See also