classes.pp 897 B

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