MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPURITemplate.h
Go to the documentation of this file.
1//
2// URITemplate.h
3// MapsIndoors SDK for iOS
4//
5// Created by Daniel Nielsen on 1/14/14.
6// Copyright (c) 2014 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
14@interface MPURITemplate : NSObject
18- (nullable instancetype) initWithTemplateString:(nonnull NSString*)url;
19
23@property (nonatomic, strong, nullable) NSString* templateURI;
24
28@property (nonatomic, strong, nullable, readonly) NSString* resultURI;
29
33- (void)addParam:(nonnull NSString*)name value:(nonnull NSString*)value;
34
38- (void)addIntParam:(nonnull NSString*)name value:(int)value;
39
43- (void)resetParams;
44
45@end
Definition MPURITemplate.h:15
NSString * templateURI
Definition MPURITemplate.h:23
NSString * resultURI
Definition MPURITemplate.h:28