1{
2    This file is part of the Free Component Library (FCL)
3    Copyright (c) 1999-2002 by the Free Pascal development team
4
5    Classes unit for Embedded target
6
7    See the file COPYING.FPC, included in this distribution,
8    for details about the copyright.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 **********************************************************************}
15
16{$mode objfpc}
17
18unit Classes;
19
20interface
21
22uses
23  sysutils,
24  rtlconsts,
25  types,
26{$ifdef FPC_TESTGENERICS}
27  fgl,
28{$endif}
29  typinfo;
30
31{$i classesh.inc}
32
33
34implementation
35
36{ OS - independent class implementations are in /inc directory. }
37{$i classes.inc}
38
39
40initialization
41  CommonInit;
42
43finalization
44  CommonCleanup;
45
46end.
47