diff options
Diffstat (limited to 'Protocol/Protocol/main.m')
| -rw-r--r-- | Protocol/Protocol/main.m | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Protocol/Protocol/main.m b/Protocol/Protocol/main.m new file mode 100644 index 0000000..cde935f --- /dev/null +++ b/Protocol/Protocol/main.m @@ -0,0 +1,18 @@ +// +// main.m +// Protocol +// +// Created by mo khan on 2013-05-30. +// Copyright (c) 2013 mo khan. All rights reserved. +// + +#import <UIKit/UIKit.h> + +#import "AppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} |
