classes.pp 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. typinfo;
  20. {$i classesh.inc}
  21. implementation
  22. { OS - independent class implementations are in /inc directory. }
  23. {$i classes.inc}
  24. initialization
  25. CommonInit;
  26. finalization
  27. CommonCleanup;
  28. end.