IdYarn.pas 817 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. $Project$
  3. $Workfile$
  4. $Revision$
  5. $DateUTC$
  6. $Id$
  7. This file is part of the Indy (Internet Direct) project, and is offered
  8. under the dual-licensing agreement described on the Indy website.
  9. (http://www.indyproject.org/)
  10. Copyright:
  11. (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
  12. }
  13. {
  14. $Log$
  15. }
  16. {
  17. Rev 1.2 2003.10.21 12:19:04 AM czhower
  18. TIdTask support and fiber bug fixes.
  19. Rev 1.1 2003.10.11 5:52:24 PM czhower
  20. -VCL fixes for servers
  21. -Chain suport for servers (Super core)
  22. -Scheduler upgrades
  23. -Full yarn support
  24. Rev 1.0 2003.09.18 4:08:54 PM czhower
  25. Initial checkin
  26. }
  27. unit IdYarn;
  28. interface
  29. {$i IdCompilerDefines.inc}
  30. type
  31. TIdYarn = class(TObject)
  32. end;
  33. implementation
  34. { TIdYarn }
  35. end.