diff options
Diffstat (limited to 'objective-c/test/ios/controller/Classes/ViewController.h')
-rw-r--r-- | objective-c/test/ios/controller/Classes/ViewController.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/objective-c/test/ios/controller/Classes/ViewController.h b/objective-c/test/ios/controller/Classes/ViewController.h new file mode 100644 index 00000000000..921af01c10c --- /dev/null +++ b/objective-c/test/ios/controller/Classes/ViewController.h @@ -0,0 +1,29 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2016 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> +#import <objc/Ice/Ice.h> + +@protocol ViewController<NSObject> +-(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; + NSMutableArray* interfacesIPv4; + NSMutableArray* interfacesIPv6; + id<ICECommunicator> communicator; +} +@end + |