aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-01-19 17:32:27 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-01-19 17:32:27 -0800
commit61bb29f1411db01732f9a9cd6e153882992726ee (patch)
tree76efdcddc5948114d35e5ef49de5ac2ed0136efc /examples/cpp
parent277e2e4f07744bd0f803efc80440f2e315f6d34a (diff)
Clean up C++ tests and example
Diffstat (limited to 'examples/cpp')
-rw-r--r--examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.h4
-rw-r--r--examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.mm39
-rw-r--r--examples/cpp/helloworld/cocoapods/HelloWorldCpp/ViewController.h2
3 files changed, 0 insertions, 45 deletions
diff --git a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.h b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.h
index 8fd0f258f7..91ba988c4a 100644
--- a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.h
+++ b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.h
@@ -19,9 +19,5 @@
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
-
@property (strong, nonatomic) UIWindow *window;
-
-
@end
-
diff --git a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.mm b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.mm
index 99b37a034b..5c60aec65b 100644
--- a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.mm
+++ b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/AppDelegate.mm
@@ -18,44 +18,5 @@
#import "AppDelegate.h"
-@interface AppDelegate ()
-
-@end
-
@implementation AppDelegate
-
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- // Override point for customization after application launch.
- return YES;
-}
-
-
-- (void)applicationWillResignActive:(UIApplication *)application {
- // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
- // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
-}
-
-
-- (void)applicationDidEnterBackground:(UIApplication *)application {
- // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
- // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
-}
-
-
-- (void)applicationWillEnterForeground:(UIApplication *)application {
- // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
-}
-
-
-- (void)applicationDidBecomeActive:(UIApplication *)application {
- // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
-}
-
-
-- (void)applicationWillTerminate:(UIApplication *)application {
- // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
-}
-
-
@end
diff --git a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/ViewController.h b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/ViewController.h
index 7b5854dfaf..28d4ca0961 100644
--- a/examples/cpp/helloworld/cocoapods/HelloWorldCpp/ViewController.h
+++ b/examples/cpp/helloworld/cocoapods/HelloWorldCpp/ViewController.h
@@ -19,7 +19,5 @@
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
-
-
@end