summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLShapeSource_Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLShapeSource_Private.h')
-rw-r--r--platform/darwin/src/MGLShapeSource_Private.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/platform/darwin/src/MGLShapeSource_Private.h b/platform/darwin/src/MGLShapeSource_Private.h
deleted file mode 100644
index 940c80a17d..0000000000
--- a/platform/darwin/src/MGLShapeSource_Private.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#import "MGLFoundation.h"
-#import "MGLShapeSource.h"
-
-#include <mbgl/util/immutable.hpp>
-
-NS_ASSUME_NONNULL_BEGIN
-
-namespace mbgl {
- namespace style {
- struct GeoJSONOptions;
- }
-}
-
-MGL_EXPORT
-mbgl::Immutable<mbgl::style::GeoJSONOptions> MGLGeoJSONOptionsFromDictionary(NSDictionary<MGLShapeSourceOption, id> *options);
-
-@interface MGLShapeSource (Private)
-
-/**
- :nodoc:
- Debug log showing structure of an `MGLFeature`. This method recurses in the case
- that the feature conforms to `MGLCluster`. This method is used for testing and
- should be considered experimental, likely to be removed or changed in future
- releases.
-
- @param feature An object that conforms to the `MGLFeature` protocol.
- @param indent Used during recursion. Specify 0.
- */
-
-- (void)debugRecursiveLogForFeature:(id<MGLFeature>)feature indent:(NSUInteger)indent;
-@end
-
-NS_ASSUME_NONNULL_END