summaryrefslogtreecommitdiff
path: root/objective-c/test/ios/Classes/TestViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'objective-c/test/ios/Classes/TestViewController.h')
-rw-r--r--objective-c/test/ios/Classes/TestViewController.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/objective-c/test/ios/Classes/TestViewController.h b/objective-c/test/ios/Classes/TestViewController.h
new file mode 100644
index 00000000000..59b3ecb220a
--- /dev/null
+++ b/objective-c/test/ios/Classes/TestViewController.h
@@ -0,0 +1,37 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice Touch is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#import <UIKit/UIKit.h>
+
+typedef enum
+{
+ TestConfigOptionDefault,
+ TestConfigOptionSliced,
+ TestConfigOptionEncoding10
+} TestConfigOption;
+
+@class Test;
+
+@interface TestViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
+{
+@private
+ IBOutlet UITableView* output;
+ IBOutlet UIActivityIndicatorView* activity;
+ IBOutlet UIButton* nextButton;
+
+ NSMutableString* currentMessage;
+ NSMutableArray* messages;
+ NSOperationQueue* queue;
+ Test* test;
+ NSEnumerator* testRunEnumerator;
+}
+-(IBAction)next:(id)sender;
+-(NSOperationQueue*) queue;
+@end
+