NMSGeoObjectResultsDelegate.h
1 //
2 // NMSGeoObjectResultsDelegate.h
3 // NavionicsMobileSDK
4 //
5 // Copyright © 2016 Navionics. All rights reserved.
6 //
7 
8 #ifndef NMSGeoObjectResultsDelegate_h
9 #define NMSGeoObjectResultsDelegate_h
10 
11 #import "NMSGeoObject.h"
12 #import "NMSEnums.h"
13 
15 @protocol NMSGeoObjectResultsDelegate <NSObject>
16 
22 -(void)searchGeoObjectDidReceiveResults:(NSArray<NMSGeoObject*>*)results withStatus:(NMSGeoObjectSearchStatus)status;
23 
28 -(void)geoObjectsAtPointDidReceiveResults:(NSArray<NMSGeoObject*>*)results;
29 
30 @end
31 
32 
33 #endif /* NMSGeoObjectResultsDelegate_h */
Abstract class that represents a cartographic object.
Definition: NMSGeoObject.h:14