Files
shadowsocks-iOS/ShadowWeb/SWBAppDelegate.h
2014-02-17 15:06:59 +08:00

29 lines
741 B
Objective-C

//
// 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