xref: /petsc/systems/Apple/iOS/examples/testopengl/Classes/iphoneViewController.h (revision 6285c0a3eab9179dbf0b284c36c7c0086124b8a4)
1 //
2 //  iphoneViewController.h
3 //  iphone
4 //
5 //  Created by Barry Smith on 5/12/10.
6 //  Copyright __MyCompanyName__ 2010. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import <GLKit/GLKit.h>
11 #import <OpenGLES/EAGLDrawable.h>
12 
13 @interface iphoneViewController : UIViewController <UITextFieldDelegate>{
14 IBOutlet UITextField *textField;
15 IBOutlet UITextView *textView;
16 IBOutlet GLKView *glkView;
17 
18 }
19 @property (retain, nonatomic) GLKView *glkView;
20 @property (nonatomic,retain) UITextField *textField;
21 @property (nonatomic,retain) UITextView *textView;
22 
23 
24 @end
25 
26