dclasses.pas 625 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. (*
  2. Duall Sistemas, Base Classes Unit
  3. Copyright (C) 2014 Silvio Clecio
  4. See the file LICENSE.txt, included in this distribution,
  5. for details about the copyright.
  6. This library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. *)
  10. unit dClasses;
  11. {$i dopf.inc}
  12. interface
  13. uses
  14. Classes, SysUtils;
  15. type
  16. { EdException }
  17. EdException = class(Exception);
  18. { TdObject }
  19. TdObject = class(TObject)
  20. end;
  21. { TdComponent }
  22. TdComponent = class(TComponent)
  23. end;
  24. implementation
  25. end.