mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:10:31 +02:00
25 lines
319 B
ObjectPascal
25 lines
319 B
ObjectPascal
{$modeswitch objectivec1}
|
|
|
|
{ Written by Jonas Maebe in 2009, released into the public domain }
|
|
|
|
unit uobjc24;
|
|
|
|
interface
|
|
|
|
type
|
|
ta = objcclass(NSObject)
|
|
end;
|
|
|
|
implementation
|
|
|
|
type
|
|
ca = objccategory(ta)
|
|
procedure implementationcategorymethod;
|
|
end;
|
|
|
|
procedure ca.implementationcategorymethod;
|
|
begin
|
|
end;
|
|
|
|
end.
|