Panda3D
viewController.h
1 // Filename: viewController.h
2 // Created by: drose (10Apr09)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #include "pandabase.h"
16 
17 #import <UIKit/UIKit.h>
18 #import <UIKit/UITextView.h>
19 
20 class IPhoneGraphicsPipe;
21 
22 @interface ControllerDemoViewController : UIViewController {
23 
24 @private
25  IPhoneGraphicsPipe *_pipe;
26 }
27 
28 - (id)initWithPipe: (IPhoneGraphicsPipe *)pipe;
29 @end
This graphics pipe represents the interface for creating OpenGL graphics windows on the various IPHON...