1
0
mirror of https://bitbucket.org/Dennis07/lina-components.git synced 2024-11-24 08:02:12 +02:00
lina-components/Source/uWebCtrls.pas
Dennis07 7b82ce01c9 Version 1.0 DEV 1.03
Signed-off-by: Dennis07 <den.goehlert@t-online.de>
2014-09-09 14:46:12 +02:00

57 lines
953 B
ObjectPascal

unit uWebCtrls;
//////////////////////////////////////
/// Lina Web Controls Unit ///
/// **************************** ///
/// (c) 2014 Dennis Göhlert a.o. ///
//////////////////////////////////////
interface
uses
{ Standard-Units }
SysUtils, Classes,
{ Andere Package-Units }
uBase;
type
{ Hauptklassen }
TDownload = class(TComponent)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function GetProgressByte: Int64;
function GetProgressPercent: Byte;
published
{ Published-Deklarationen }
end;
implementation
constructor TDownload.Create(AOwner: TComponent);
begin
inherited;
//...
end;
destructor TDownload.Destroy;
begin
//...
inherited;
end;
function TDownload.GetProgressByte: Int64;
begin
//...
end;
function TDownload.GetProgressPercent: Byte;
begin
//...
end;
end.