summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLOfflineStorage_Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLOfflineStorage_Private.h')
-rw-r--r--platform/darwin/src/MGLOfflineStorage_Private.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/platform/darwin/src/MGLOfflineStorage_Private.h b/platform/darwin/src/MGLOfflineStorage_Private.h
deleted file mode 100644
index c01163e766..0000000000
--- a/platform/darwin/src/MGLOfflineStorage_Private.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#import "MGLOfflineStorage.h"
-
-#import "MGLOfflinePack.h"
-
-#include <mbgl/storage/online_file_source.hpp>
-#include <mbgl/storage/database_file_source.hpp>
-
-#include <memory>
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface MGLOfflineStorage (Private)
-
-/**
- The shared database file source object owned by the shared offline storage object.
- */
-@property (nonatomic) std::shared_ptr<mbgl::DatabaseFileSource> mbglDatabaseFileSource;
-
-/**
- The shared online file source object owned by the shared offline storage object.
- */
-@property (nonatomic) std::shared_ptr<mbgl::FileSource> mbglOnlineFileSource;
-
-/**
- The shared resource loader file source object owned by the shared offline storage object.
- */
-@property (nonatomic) std::shared_ptr<mbgl::FileSource> mbglFileSource;
-
-/**
- The shared offline cache path.
- */
-@property (nonatomic) std::string mbglCachePath;
-
-@end
-
-NS_ASSUME_NONNULL_END