]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / objc / modules-incomplete / myModule.m
1 #include "myModule.h"
2 #include "stdio.h"
3
4 @implementation MyClass {
5 };
6 -(void)publicMethod {
7   printf("Hello public!\n");
8 }
9 -(int)privateMethod {
10   printf("Hello private!\n");
11   return 5;
12 }
13 @end
14