forked from sinuos-zz/shadowsocks-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWBAppDelegate.h
More file actions
28 lines (18 loc) · 741 Bytes
/
SWBAppDelegate.h
File metadata and controls
28 lines (18 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// SWBAppDelegate.h
// ShadowWeb
//
// Created by clowwindy on 2/16/13.
// Copyright (c) 2013 clowwindy. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SWBNetworkActivityIndicatorManager.h"
#define appNetworkActivityIndicatorManager [(SWBAppDelegate *)[UIApplication sharedApplication].delegate networkActivityIndicatorManager]
@class SWBViewController;
@interface SWBAppDelegate : UIResponder <UIApplicationDelegate, UIAlertViewDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) SWBViewController *viewController;
@property (nonatomic, strong) SWBNetworkActivityIndicatorManager *networkActivityIndicatorManager;
- (void)setPolipo:(BOOL)enabled;
- (void)updateProxyMode;
@end