System.ZLib.TCustomZStream.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(stream: TStream);

C++

__fastcall TCustomZStream(System::Classes::TStream* stream);

Properties

Type Visibility Source Unit Parent
constructor protected
System.ZLib.pas
System.ZLib.hpp
System.ZLib TCustomZStream

Description

Initializes an instance of a TCustomZStream-derived object.

TCustomZStream is intended to be an abstract base class for your own custom data compression streams. Its constructor is protected; therefore you cannot directly instantiate an instance of this class.

A concrete class derived from TCustomZStream should, in its own public constructor, call the constructor inherited from TCustomZStream.