blob: 5d33e1b1f23ffc1d32e186e809a1c8b1eedf52ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{$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.
|