Skip to content

Commit

Permalink
Resolved conflict in ASIHTTPRequestConfig.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jk committed Aug 21, 2010
2 parents 64d9312 + 6251bf1 commit 4cf82d5
Show file tree
Hide file tree
Showing 85 changed files with 6,927 additions and 4,877 deletions.
9 changes: 8 additions & 1 deletion .gitignore
@@ -1,4 +1,11 @@
build
*xcodeproj/*mode*
*xcodeproj/*pbxuser
*xcodeproj/*per*
*xcodeproj/project.xcworkspace
*xcodeproj/xcuserdata
*tmproj
.DS_Store
profile
*.pbxuser
*.mode1v3
.DS_Store
17 changes: 12 additions & 5 deletions Classes/ASIAuthenticationDialog.h
Expand Up @@ -7,22 +7,29 @@
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class ASIHTTPRequest;

typedef enum _ASIAuthenticationType {
ASIStandardAuthenticationType = 0,
ASIProxyAuthenticationType = 1
} ASIAuthenticationType;

@interface ASIAuthenticationDialog : NSObject <UIActionSheetDelegate, UITableViewDelegate, UITableViewDataSource> {

@interface ASIAutorotatingViewController : UIViewController
@end

@interface ASIAuthenticationDialog : ASIAutorotatingViewController <UIActionSheetDelegate, UITableViewDelegate, UITableViewDataSource> {
ASIHTTPRequest *request;
UIActionSheet *loginDialog;
ASIAuthenticationType type;
UITableView *tableView;
UIViewController *presentingController;
BOOL didEnableRotationNotifications;
}
+ (void)presentAuthenticationDialogForRequest:(ASIHTTPRequest *)request;
+ (void)presentProxyAuthenticationDialogForRequest:(ASIHTTPRequest *)request;
+ (void)dismiss;

@property (retain) ASIHTTPRequest *request;
@property (retain) UIActionSheet *loginDialog;
@property (assign) ASIAuthenticationType type;
@property (assign) BOOL didEnableRotationNotifications;
@property (retain, nonatomic) UIViewController *presentingController;
@end

0 comments on commit 4cf82d5

Please sign in to comment.