IdStream.pas 645 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. unit IdStream;
  17. interface
  18. {$I IdCompilerDefines.inc}
  19. uses
  20. {$IFDEF DOTNET}
  21. IdStreamNET
  22. {$ELSE}
  23. IdStreamVCL
  24. {$ENDIF};
  25. type
  26. {$IFDEF DOTNET}
  27. TIdStreamHelper = TIdStreamHelperNET;
  28. {$ELSE}
  29. TIdStreamHelper = TIdStreamHelperVCL;
  30. {$ENDIF}
  31. implementation
  32. end.