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

MWMWatchEventInfo.h « WatchEventHandler « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4cb28cf1a6f12bb1af33c64ae9c6e02947ca193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import <Foundation/Foundation.h>

typedef NS_ENUM(NSUInteger, MWMWatchEventInfoRequest)
{
  MWMWatchEventInfoRequestMoveWritableDir
};

@interface NSDictionary (MWMWatchEventInfo)

@property (nonatomic, readonly) MWMWatchEventInfoRequest watchEventInfoRequest;

@end

@interface NSMutableDictionary (MWMWatchEventInfo)

@property (nonatomic) MWMWatchEventInfoRequest watchEventInfoRequest;

@end