IdRawClient.pas 879 B

12345678910111213141516171819202122232425262728293031323334
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 10291: IdRawClient.pas
  11. {
  12. { Rev 1.0 2002.11.12 10:49:22 PM czhower
  13. }
  14. unit IdRawClient;
  15. interface
  16. uses
  17. IdRawBase;
  18. type
  19. TIdRawClient = class(TIdRawBase)
  20. published
  21. property ReceiveTimeout;
  22. property Host;
  23. property Port;
  24. property Protocol;
  25. end;
  26. implementation
  27. { TIdRawClient }
  28. end.