diff options
| author | Tim Redfern <tim@Adaptics.local> | 2013-09-18 17:28:16 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@Adaptics.local> | 2013-09-18 17:28:16 +0100 |
| commit | 31b03c8a1234b966ec56f5da316d93a9259c5d71 (patch) | |
| tree | 765de64c5cb766703beac87bdccf61a739cd3be1 /sampleclient/main.m | |
initial commit
Diffstat (limited to 'sampleclient/main.m')
| -rwxr-xr-x | sampleclient/main.m | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sampleclient/main.m b/sampleclient/main.m new file mode 100755 index 0000000..1f1654c --- /dev/null +++ b/sampleclient/main.m @@ -0,0 +1,15 @@ +// +// main.m +// sampleclient + + +#import <UIKit/UIKit.h> + +#import "AppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} |
