ArDrone SDK 1.8 added
[mardrone] / mardrone / ARDrone_SDK_Version_1_8_20110726 / ControlEngine / iPhone / Classes / Controllers / GLViewController.h
diff --git a/mardrone/ARDrone_SDK_Version_1_8_20110726/ControlEngine/iPhone/Classes/Controllers/GLViewController.h b/mardrone/ARDrone_SDK_Version_1_8_20110726/ControlEngine/iPhone/Classes/Controllers/GLViewController.h
new file mode 100644 (file)
index 0000000..477b571
--- /dev/null
@@ -0,0 +1,27 @@
+/**
+ *  @file GLViewController.h
+ *
+ * Copyright 2009 Parrot SA. All rights reserved.
+ * @author D HAEYER Frederic
+ * @date 2009/10/26
+ */
+#include "ConstantsAndMacros.h"
+
+#import "OpenGLVideo.h"
+#import "OpenGLSprite.h"
+#import "ARDrone.h"
+#import "InternalProtocols.h"
+
+@class OpenGLVideo;
+
+@interface GLViewController : NSObject {
+@private
+       OpenGLVideo   *video;
+       BOOL screenOrientationRight;
+       id delegate;
+}
+
+- (id)initWithFrame:(CGRect)frame withDelegate:(id<NavdataProtocol>)delegate;
+- (void)setScreenOrientationRight:(BOOL)right;
+- (void)drawView;
+@end