spotny-sdk 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/SpotnySdk.mm +8 -5
- package/package.json +1 -1
package/ios/SpotnySdk.mm
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
#import "SpotnySdk.h"
|
|
2
|
-
//
|
|
3
|
-
//
|
|
4
|
-
//
|
|
5
|
-
|
|
6
|
-
@
|
|
2
|
+
// CoreLocation is a system framework whose public headers use #import (not @import),
|
|
3
|
+
// so importing it here is safe in an ObjC++ (.mm) context.
|
|
4
|
+
// This provides CLLocationManager, CLAuthorizationStatus, CLBeacon, CLRegionState, etc.
|
|
5
|
+
#import <CoreLocation/CoreLocation.h>
|
|
6
|
+
// KontaktSDK headers use @import internally and cannot be included in ObjC++.
|
|
7
|
+
// @class / @protocol forward declarations are enough for pointer params in the generated header.
|
|
8
|
+
@class KTKBeaconManager;
|
|
9
|
+
@class KTKBeaconRegion;
|
|
7
10
|
@protocol KTKBeaconManagerDelegate;
|
|
8
11
|
// Auto-generated Swift header (contains SpotnyBeaconScanner)
|
|
9
12
|
#import "SpotnySdk-Swift.h"
|