ObjFW  Diff

Differences From Artifact [b5310ee637]:

To Artifact [5616dbe160]:


40
41
42
43
44
45
46
47

48
49
50
51
@implementation TestPlugin
- (int)test: (int)num
{
	return num * 2;
}
@end

id

OFPluginInit(void)
{
	return [[[TestPlugin alloc] init] autorelease];
}







<
>
|

|

40
41
42
43
44
45
46

47
48
49
50
51
@implementation TestPlugin
- (int)test: (int)num
{
	return num * 2;
}
@end


Class
class(void)
{
	return [TestPlugin class];
}