summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLForegroundStyleLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLForegroundStyleLayer.h')
-rw-r--r--platform/darwin/src/MGLForegroundStyleLayer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/platform/darwin/src/MGLForegroundStyleLayer.h b/platform/darwin/src/MGLForegroundStyleLayer.h
deleted file mode 100644
index 7e05023ef1..0000000000
--- a/platform/darwin/src/MGLForegroundStyleLayer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#import <Foundation/Foundation.h>
-
-#import "MGLFoundation.h"
-#import "MGLStyleLayer.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class MGLSource;
-
-/**
- `MGLForegroundStyleLayer` is an abstract superclass for style layers whose
- content is defined by an `MGLSource` object.
-
- Create instances of `MGLRasterStyleLayer`, `MGLHillshadeStyleLayer`, and the
- concrete subclasses of `MGLVectorStyleLayer` in order to use
- `MGLForegroundStyleLayer`'s methods. Do not create instances of
- `MGLForegroundStyleLayer` directly, and do not create your own subclasses of
- this class.
- */
-MGL_EXPORT
-@interface MGLForegroundStyleLayer : MGLStyleLayer
-
-#pragma mark Initializing a Style Layer
-
-- (instancetype)init __attribute__((unavailable("Use -init methods of concrete subclasses instead.")));
-
-#pragma mark Specifying a Style Layer’s Content
-
-/**
- Identifier of the source from which the receiver obtains the data to style.
- */
-@property (nonatomic, readonly, nullable) NSString *sourceIdentifier;
-
-@end
-
-NS_ASSUME_NONNULL_END