| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- $Project$
- $Workfile$
- $Revision$
- $DateUTC$
- $Id$
- This file is part of the Indy (Internet Direct) project, and is offered
- under the dual-licensing agreement described on the Indy website.
- (http://www.indyproject.org/)
- Copyright:
- (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
- }
- {
- $Log$
- }
- unit IdStream;
- interface
- {$I IdCompilerDefines.inc}
- uses
- {$IFDEF DOTNET}
- IdStreamNET
- {$ELSE}
- IdStreamVCL
- {$ENDIF};
- type
- {$IFDEF DOTNET}
- TIdStreamHelper = TIdStreamHelperNET;
- {$ELSE}
- TIdStreamHelper = TIdStreamHelperVCL;
- {$ENDIF}
- implementation
- end.
|