summaryrefslogtreecommitdiff
path: root/cpp/test/ios/Classes/TestViewController.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-05-31 08:59:20 +0200
committerBenoit Foucher <benoit@zeroc.com>2016-05-31 08:59:20 +0200
commit9f99bad130508d529814c778852621f6a1b814cc (patch)
tree4fa8328539c80f719cca38a0fb7f67b2995618fc /cpp/test/ios/Classes/TestViewController.h
parentPHP 7 fix for printing Exception info (diff)
downloadice-9f99bad130508d529814c778852621f6a1b814cc.tar.bz2
ice-9f99bad130508d529814c778852621f6a1b814cc.tar.xz
ice-9f99bad130508d529814c778852621f6a1b814cc.zip
Added support for building Xcode SDK, added iAP transport
Diffstat (limited to 'cpp/test/ios/Classes/TestViewController.h')
-rw-r--r--cpp/test/ios/Classes/TestViewController.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/test/ios/Classes/TestViewController.h b/cpp/test/ios/Classes/TestViewController.h
new file mode 100644
index 00000000000..697e274f583
--- /dev/null
+++ b/cpp/test/ios/Classes/TestViewController.h
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// 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>
+#import <TestUtil.h>
+
+@interface TestViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
+{
+@private
+ IBOutlet UITableView* output;
+ IBOutlet UIActivityIndicatorView* activity;
+ IBOutlet UIButton* nextButton;
+
+ NSMutableString* currentMessage;
+ NSMutableArray* messages;
+ NSOperationQueue* queue;
+ TestCase* test;
+ NSEnumerator* testRunEnumator;
+ bool reloadScheduled;
+}
+-(IBAction)next:(id)sender;
+-(NSOperationQueue*) queue;
+@end
+