X-Git-Url: http://git.maemo.org/git/?p=mardrone;a=blobdiff_plain;f=mardrone%2FARDrone_SDK_Version_1_8_20110726%2FControlEngine%2FiPhone%2FClasses%2FControllers%2FGLViewController.h;fp=mardrone%2FARDrone_SDK_Version_1_8_20110726%2FControlEngine%2FiPhone%2FClasses%2FControllers%2FGLViewController.h;h=477b5715e309dbaf4827789924880ecbdd006b34;hp=0000000000000000000000000000000000000000;hb=9ec9bc13b75d30bc45535c54a652934debfcea92;hpb=ae0a3c2dc0898400aca0dd6b439c5db8044db7b2 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 index 0000000..477b571 --- /dev/null +++ b/mardrone/ARDrone_SDK_Version_1_8_20110726/ControlEngine/iPhone/Classes/Controllers/GLViewController.h @@ -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)delegate; +- (void)setScreenOrientationRight:(BOOL)right; +- (void)drawView; +@end