mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 14:09:17 +02:00
* Marked extra constructor as overloaded
git-svn-id: trunk@13467 -
This commit is contained in:
parent
b09cd7ed16
commit
d50d1a655a
@ -82,7 +82,7 @@ Type
|
||||
Protected
|
||||
Procedure CreateCryptKey(Const S : String; Var Key : TIDEACryptKey);
|
||||
Public
|
||||
Constructor Create(AKey : TIDEAKey; Dest: TStream);
|
||||
Constructor Create(AKey : TIDEAKey; Dest: TStream); overload;
|
||||
Property Key : TIDEAKey Read FKey;
|
||||
end;
|
||||
|
||||
@ -90,7 +90,7 @@ Type
|
||||
|
||||
TIDEAEncryptStream = Class(TIDEAStream)
|
||||
public
|
||||
Constructor Create(Const AKey : String; Dest: TStream);
|
||||
Constructor Create(Const AKey : String; Dest: TStream); overload;
|
||||
Destructor Destroy; override;
|
||||
function Write(const Buffer; Count: Longint): Longint; override;
|
||||
function Seek(Offset: Longint; Origin: Word): Longint; override;
|
||||
@ -101,7 +101,7 @@ Type
|
||||
|
||||
TIDEADeCryptStream = Class(TIDEAStream)
|
||||
public
|
||||
Constructor Create(Const AKey : String; Dest: TStream);
|
||||
Constructor Create(Const AKey : String; Dest: TStream); overload;
|
||||
function Read(var Buffer; Count: Longint): Longint; override;
|
||||
function Seek(Offset: Longint; Origin: Word): Longint; override;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user