summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLOfflineStorage_Private.h
blob: 5ac64ea995b8339cf734de2ea3d2decdb4cc5e98 (plain)
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
#import "MGLOfflineStorage.h"

#import "MGLOfflinePack.h"

#include <mbgl/storage/default_file_source.hpp>

#include <memory>

NS_ASSUME_NONNULL_BEGIN

@interface MGLOfflineStorage (Private)

/**
 The shared file source object owned by the shared offline storage object.
 */
@property (nonatomic) std::shared_ptr<mbgl::DefaultFileSource> mbglFileSource;

/**
 The shared offline cache path.
 */
@property (nonatomic) std::string mbglCachePath;

@end

NS_ASSUME_NONNULL_END