classes.pp 1019 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 Wii
  5. Copyright (c) 2011 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. {$IF FPC_FULLVERSION>=30301}
  14. {$modeswitch FUNCTIONREFERENCES}
  15. {$define FPC_HAS_REFERENCE_PROCEDURE}
  16. {$endif}
  17. unit Classes;
  18. interface
  19. uses
  20. sysutils,
  21. rtlconsts,
  22. types,
  23. sortbase,
  24. {$ifdef FPC_TESTGENERICS}
  25. fgl,
  26. {$endif}
  27. typinfo;
  28. {$i classesh.inc}
  29. implementation
  30. { OS - independent class implementations are in /inc directory. }
  31. {$i classes.inc}
  32. initialization
  33. CommonInit;
  34. finalization
  35. CommonCleanup;
  36. end.