diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-13 17:40:25 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-13 17:40:25 +0100 |
commit | be3f1d1fc29f0b13c26149a5e654e335eda75450 (patch) | |
tree | 3a41e2a92b3dfd6606ee212e1a2e476db4c321d3 /cpp/test/ios/controller/Classes/main.m | |
parent | Another fix for Windows bin PATH (diff) | |
download | ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.tar.bz2 ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.tar.xz ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.zip |
Support for C++ iOS Simulator controller
Diffstat (limited to 'cpp/test/ios/controller/Classes/main.m')
-rw-r--r-- | cpp/test/ios/controller/Classes/main.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cpp/test/ios/controller/Classes/main.m b/cpp/test/ios/controller/Classes/main.m new file mode 100644 index 00000000000..bd3a0a0c555 --- /dev/null +++ b/cpp/test/ios/controller/Classes/main.m @@ -0,0 +1,16 @@ +// +// main.m +// C++ Test Controller +// +// Created by Benoit Foucher on 08/12/2016. +// Copyright © 2016 ZeroC, Inc. 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])); + } +} |