aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m')
-rw-r--r--examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m
new file mode 100644
index 0000000000..994e0341b2
--- /dev/null
+++ b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/main.m
@@ -0,0 +1,16 @@
+//
+// main.m
+// HelloWorldCpp
+//
+// Created by Muxi Yan on 1/3/18.
+// Copyright © 2018 gRPC. 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]));
+ }
+}