classes.pp 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
  5. Classes unit for Class AmigaOS
  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. typinfo,
  17. sysutils;
  18. {$i classesh.inc}
  19. implementation
  20. { OS - independent class implementations are in /inc directory. }
  21. {$i classes.inc}
  22. initialization
  23. CommonInit;
  24. finalization
  25. CommonCleanup;
  26. end.
  27. {
  28. $Log$
  29. Revision 1.1 2002-11-11 15:31:35 carl
  30. + initial revision for amiga
  31. }