diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-13 17:40:25 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-13 17:40:25 +0100 |
commit | be3f1d1fc29f0b13c26149a5e654e335eda75450 (patch) | |
tree | 3a41e2a92b3dfd6606ee212e1a2e476db4c321d3 /cpp/test/ios/Classes/TestViewController.h | |
parent | Another fix for Windows bin PATH (diff) | |
download | ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.tar.bz2 ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.tar.xz ice-be3f1d1fc29f0b13c26149a5e654e335eda75450.zip |
Support for C++ iOS Simulator controller
Diffstat (limited to 'cpp/test/ios/Classes/TestViewController.h')
-rw-r--r-- | cpp/test/ios/Classes/TestViewController.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cpp/test/ios/Classes/TestViewController.h b/cpp/test/ios/Classes/TestViewController.h deleted file mode 100644 index 1f901ffdd8f..00000000000 --- a/cpp/test/ios/Classes/TestViewController.h +++ /dev/null @@ -1,30 +0,0 @@ -// ********************************************************************** -// -// 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 <TestUtil.h> - -@interface TestViewController : UIViewController<UITableViewDataSource, UITableViewDelegate> -{ -@private - IBOutlet UITableView* output; - IBOutlet UIActivityIndicatorView* activity; - IBOutlet UIButton* nextButton; - - NSMutableString* currentMessage; - NSMutableArray* messages; - NSOperationQueue* queue; - TestSuite* testSuite; - NSEnumerator* testRunEnumator; - bool reloadScheduled; -} --(IBAction)next:(id)sender; --(NSOperationQueue*) queue; -@end - |