diff options
Diffstat (limited to 'cpp/test/ios/controller/Classes/ViewController.h')
-rw-r--r-- | cpp/test/ios/controller/Classes/ViewController.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/cpp/test/ios/controller/Classes/ViewController.h b/cpp/test/ios/controller/Classes/ViewController.h deleted file mode 100644 index 47fbd1851a0..00000000000 --- a/cpp/test/ios/controller/Classes/ViewController.h +++ /dev/null @@ -1,28 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2018 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> - -@protocol ViewController --(void) print:(NSString*)msg; --(void) println:(NSString*)msg; -@end - -@interface ViewController : UIViewController<ViewController, UIPickerViewDataSource, UIPickerViewDelegate> -{ -@private - IBOutlet UIPickerView* interfaceIPv4; - IBOutlet UIPickerView* interfaceIPv6; - IBOutlet UITextView* output; - void (*startController)(id<ViewController>, NSString*, NSString*); - void (*stopController)(id<ViewController>); - NSMutableArray* interfacesIPv4; - NSMutableArray* interfacesIPv6; -} -@end |