summaryrefslogtreecommitdiff
path: root/platform/ios/MGLFileCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/MGLFileCache.h')
-rw-r--r--platform/ios/MGLFileCache.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/platform/ios/MGLFileCache.h b/platform/ios/MGLFileCache.h
index 5e9f37fe2d..082cec69a3 100644
--- a/platform/ios/MGLFileCache.h
+++ b/platform/ios/MGLFileCache.h
@@ -1,10 +1,14 @@
-#import <Foundation/Foundation.h>
+#import "MGLTypes.h"
#include <mbgl/storage/sqlite_cache.hpp>
+NS_ASSUME_NONNULL_BEGIN
+
@interface MGLFileCache : NSObject
+ (mbgl::SQLiteCache *)obtainSharedCacheWithObject:(NSObject *)object;
+ (void)releaseSharedCacheForObject:(NSObject *)object;
@end
+
+NS_ASSUME_NONNULL_END