summary refs log tree commit diff stats
path: root/examples/objciface/gnustepex.nim
blob: d961d308776a6a6f0ab387181ad09e3f8e6b400c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# horrible example of how to interface with GNUStep ...

{.passL: "-lobjc".}
{.emit: """

#include <objc/Object.h>

@interface Greeter:Object
{
}

- (void)greet:(long)x y:(long)dummy;

@end

#include <stdio.h>

@implementation Greeter

- (void)greet:(long)x y:(long)dummy
{
	printf("Hello, World!\n");
}

@end

#include <stdlib.h>
""".}

type
  TId {.importc: "id", header: "<objc/Object.h>", final.} = distinct int

proc newGreeter: TId {.importobjc: "Greeter new", nodecl.}
proc greet(self: TId, x, y: int) {.importobjc: "greet", nodecl.}
proc free(self: TId) {.importobjc: "free", nodecl.}

var g = newGreeter()
g.greet(12, 34)
g.free()