mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-01-12 22:52:17 +08:00
19 lines
357 B
Objective-C
19 lines
357 B
Objective-C
//
|
|
// SWBNetworkActivityIndicatorManager.h
|
|
// AquaWeb
|
|
//
|
|
// Created by clowwindy on 11-7-3.
|
|
// Copyright 2011年 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface SWBNetworkActivityIndicatorManager : NSObject {
|
|
NSMutableSet *sources;
|
|
}
|
|
|
|
-(void)setSourceActivityStatusIsBusy:(id)source busy:(BOOL)busy;
|
|
|
|
@end
|