Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DownloadIndicatorProtocol.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d224e4136392edde7e030c67146aaa0460d5514 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <Foundation/Foundation.h>

@protocol DownloadIndicatorProtocol <NSObject>

- (void)enableStandby;
- (void)disableStandby;

- (void)disableDownloadIndicator;
- (void)enableDownloadIndicator;

@end