diff options
Diffstat (limited to 'cpp/test/ios/testSuiteApp/Classes/AppDelegate.h')
-rw-r--r-- | cpp/test/ios/testSuiteApp/Classes/AppDelegate.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/cpp/test/ios/testSuiteApp/Classes/AppDelegate.h b/cpp/test/ios/testSuiteApp/Classes/AppDelegate.h deleted file mode 100644 index fa77203b97c..00000000000 --- a/cpp/test/ios/testSuiteApp/Classes/AppDelegate.h +++ /dev/null @@ -1,34 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#import <UIKit/UIKit.h> - -@interface AppDelegate : NSObject <UIApplicationDelegate> -{ -@private - - UIWindow *window; - IBOutlet UINavigationController *navigationController; - NSArray* testSuites; - NSInteger currentTestSuite; - NSString* protocol; - BOOL loop; -} - -@property (nonatomic, retain) IBOutlet UIWindow *window; -@property (nonatomic, retain) IBOutlet UINavigationController* navigationController; -@property (nonatomic, readonly) NSArray* testSuites; -@property (nonatomic) NSInteger currentTestSuite; -@property (nonatomic, retain) NSString* protocol; -@property (nonatomic) BOOL loop; - --(BOOL)testCompleted:(BOOL)success; - -@end - |