summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLForegroundStyleLayer_Private.h
blob: 8b8da6c782cd10064445fa645e73920b5cb51539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#import "MGLForegroundStyleLayer.h"

#include <memory>

NS_ASSUME_NONNULL_BEGIN

namespace mbgl {
    namespace style {
        class Layer;
    }
}

@interface MGLForegroundStyleLayer (Private)

- (instancetype)initWithRawLayer:(mbgl::style::Layer *)rawLayer source:(MGLSource *)source;
- (instancetype)initWithPendingLayer:(std::unique_ptr<mbgl::style::Layer>)pendingLayer source:(MGLSource *)source;

@end

NS_ASSUME_NONNULL_END