changed git call from https to git readonly
[atutor.git] / mods / atsocial_iphone_app / Classes / QAWebController.h
1 //
2 //  QAWebController.h
3 //  ATutor
4 //
5 //  Created by Quang Anh Do on 30/05/2010.
6 //  Copyright 2010 Quang Anh Do. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10 #import <Three20/Three20.h>
11
12 @protocol QAWebControllerDelegate;
13
14 @interface QAWebController : TTWebController {
15         id oAuthDelegate;
16 }
17
18 @property (nonatomic, assign) id<QAWebControllerDelegate> oAuthDelegate;
19
20 @end
21
22 @protocol QAWebControllerDelegate
23
24 - (void)didFinishAuthorizationInWebViewController:(QAWebController *)webViewController;
25
26 @end
27