classes.pp 791 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
  4. Classes unit for Class AmigaOS
  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. typinfo,
  16. sysutils;
  17. {$i classesh.inc}
  18. implementation
  19. { OS - independent class implementations are in /inc directory. }
  20. {$i classes.inc}
  21. initialization
  22. CommonInit;
  23. finalization
  24. CommonCleanup;
  25. end.