Pascal Doc
Source: VCL.pas
Overview
Search
Unit Dependencies
Interface Uses
SysUtils
Source Code
1
unit
VCL;
2
3
interface
4
5
uses
SysUtils;
6
7
type
8
TControl
=
class
(
TObject
)
9
end
;
10
11
implementation
12
13
begin
14
end
.