summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLSource.mm
blob: 1b889d44d7169ff3c5ed1ddf0a76fa7e91f330ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "MGLSource_Private.h"

#include <mbgl/style/source.hpp>

@implementation MGLSource

- (instancetype)initWithIdentifier:(NSString *)identifier
{
    if (self = [super init]) {
        _identifier = identifier;
    }
    return self;
}

@end