classes.pp 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 Embedded target
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {$mode objfpc}
  12. unit Classes;
  13. interface
  14. uses
  15. sysutils,
  16. rtlconsts,
  17. types,
  18. sortbase,
  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.