mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:48:34 +02:00
28 lines
309 B
ObjectPascal
28 lines
309 B
ObjectPascal
unit tw2942a;
|
|
|
|
|
|
interface
|
|
{$mode Delphi}
|
|
|
|
Type
|
|
TIdStack = class
|
|
public
|
|
constructor Create; reintroduce; virtual;
|
|
destructor Destroy; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
constructor TIdStack.Create;
|
|
begin
|
|
inherited destroy;
|
|
end;
|
|
|
|
destructor TIdStack.Destroy;
|
|
begin
|
|
inherited Destroy;
|
|
end;
|
|
|
|
|
|
end.
|