diff options
Diffstat (limited to 'platform/ios/MGLFileCache.h')
-rw-r--r-- | platform/ios/MGLFileCache.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/platform/ios/MGLFileCache.h b/platform/ios/MGLFileCache.h new file mode 100644 index 0000000000..5e9f37fe2d --- /dev/null +++ b/platform/ios/MGLFileCache.h @@ -0,0 +1,10 @@ +#import <Foundation/Foundation.h> + +#include <mbgl/storage/sqlite_cache.hpp> + +@interface MGLFileCache : NSObject + ++ (mbgl::SQLiteCache *)obtainSharedCacheWithObject:(NSObject *)object; ++ (void)releaseSharedCacheForObject:(NSObject *)object; + +@end |