MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPLocationDataset.h
Go to the documentation of this file.
1//
2// MPLocations.h
3// MapsIndoors SDK for iOS
4//
5// Created by Daniel Nielsen on 7/29/13.
6// Copyright (c) 2017 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "MPLocation.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
17@protocol MPLocation
18@end
19
23@interface MPLocationDataset : MPJSONModel
24
25- (instancetype)initWithLocations:(NSArray<MPLocation*>*) locations;
26
30@property (nonatomic, strong, nullable, readonly) NSArray<MPLocation*><MPLocation> *list;
31
32@end
33
34NS_ASSUME_NONNULL_END
Definition MPLocationDataset.h:24
NSArray< MPLocation * >< MPLocation > * list
Definition MPLocationDataset.h:30
Definition MPLocation.h:38