mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 13:59:34 +02:00
16 lines
143 B
ObjectPascal
16 lines
143 B
ObjectPascal
unit uabstrcl;
|
|
|
|
{$m+}
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
tc = class
|
|
constructor create; virtual; abstract;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|