// ********************************************************************** // // 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 @protocol ViewController -(void) print:(NSString*)msg; -(void) println:(NSString*)msg; @end @interface ViewController : UIViewController { @private IBOutlet UIPickerView* interfaceIPv4; IBOutlet UIPickerView* interfaceIPv6; IBOutlet UITextView* output; void (*startController)(id, NSString*, NSString*); void (*stopController)(id); NSMutableArray* interfacesIPv4; NSMutableArray* interfacesIPv6; } @end