mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-24 02:59:12 +02:00
16 lines
157 B
ObjectPascal
16 lines
157 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
classes;
|
|
|
|
type
|
|
TPublicQueueList = class(tfplist)
|
|
public
|
|
property List: PPointerList read FList;
|
|
end;
|
|
|
|
begin
|
|
end.
|