summaryrefslogtreecommitdiff
path: root/objective-c/test/ios/testSuiteApp/Classes/TestViewController.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-04-05 10:03:28 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-04-05 10:03:28 +0200
commitdbf9c4209352f355a67a8400aab1659272c80703 (patch)
tree002b3141a47bf8ce0581ecbc6a5349fe62b40574 /objective-c/test/ios/testSuiteApp/Classes/TestViewController.h
parentFix (ICE-7742) - Ice/faultTolerance Python 3.6 crash when using pip packages (diff)
downloadice-dbf9c4209352f355a67a8400aab1659272c80703.tar.bz2
ice-dbf9c4209352f355a67a8400aab1659272c80703.tar.xz
ice-dbf9c4209352f355a67a8400aab1659272c80703.zip
Fixed C++/Objective-C controllerApp projects to no longer reference armv7, removed obsolete testSuiteApp
Diffstat (limited to 'objective-c/test/ios/testSuiteApp/Classes/TestViewController.h')
-rw-r--r--objective-c/test/ios/testSuiteApp/Classes/TestViewController.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/objective-c/test/ios/testSuiteApp/Classes/TestViewController.h b/objective-c/test/ios/testSuiteApp/Classes/TestViewController.h
deleted file mode 100644
index 8ea67a20b23..00000000000
--- a/objective-c/test/ios/testSuiteApp/Classes/TestViewController.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// **********************************************************************
-//
-// 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 <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
-