mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:48:34 +02:00
18 lines
204 B
ObjectPascal
18 lines
204 B
ObjectPascal
unit uexrtti16;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
Type
|
|
{$RTTI EXPLICIT
|
|
PROPERTIES([vcPublic])
|
|
FIELDS([vcPublic])
|
|
METHODS([vcPublic])}
|
|
|
|
TBase = Class(TObject)
|
|
end;
|
|
|
|
implementation
|
|
|
|
end. |