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