Skip to content

Commit 606831e

Browse files
author
Andy Johns
committed
Release v3..92
Updated to latest Predix Mobile SDK v3.92 which included: - Xcode 9.3 support - Minor bug fixes
1 parent 6597e73 commit 606831e

File tree

17 files changed

+38
-25
lines changed

17 files changed

+38
-25
lines changed

Frameworks/PredixMobileSDK.framework/Headers/PredixMobileSDK-Swift.h

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by Apple Swift version 4.0.3 (swiftlang-900.0.74.1 clang-900.0.39.2)
1+
// Generated by Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.37.1)
22
#pragma clang diagnostic push
33
#pragma clang diagnostic ignored "-Wgcc-compat"
44

@@ -15,15 +15,6 @@
1515
# define __has_warning(x) 0
1616
#endif
1717

18-
#if __has_attribute(external_source_symbol)
19-
# define SWIFT_STRINGIFY(str) #str
20-
# define SWIFT_MODULE_NAMESPACE_PUSH(module_name) _Pragma(SWIFT_STRINGIFY(clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in=module_name, generated_declaration))), apply_to=any(function, enum, objc_interface, objc_category, objc_protocol))))
21-
# define SWIFT_MODULE_NAMESPACE_POP _Pragma("clang attribute pop")
22-
#else
23-
# define SWIFT_MODULE_NAMESPACE_PUSH(module_name)
24-
# define SWIFT_MODULE_NAMESPACE_POP
25-
#endif
26-
2718
#if __has_include(<swift/objc-prologue.h>)
2819
# include <swift/objc-prologue.h>
2920
#endif
@@ -38,7 +29,7 @@
3829
# define SWIFT_TYPEDEFS 1
3930
# if __has_include(<uchar.h>)
4031
# include <uchar.h>
41-
# elif !defined(__cplusplus) || __cplusplus < 201103L
32+
# elif !defined(__cplusplus)
4233
typedef uint_least16_t char16_t;
4334
typedef uint_least32_t char32_t;
4435
# endif
@@ -186,7 +177,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
186177
#pragma clang diagnostic ignored "-Wunknown-pragmas"
187178
#pragma clang diagnostic ignored "-Wnullability"
188179

189-
SWIFT_MODULE_NAMESPACE_PUSH("PredixMobileSDK")
180+
#if __has_attribute(external_source_symbol)
181+
# pragma push_macro("any")
182+
# undef any
183+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="PredixMobileSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
184+
# pragma pop_macro("any")
185+
#endif
186+
190187
/// Enumeration for specifying location of configuration elements.
191188
typedef SWIFT_ENUM(NSInteger, ConfigurationLocation) {
192189
/// Configuration is stored in the Settings bundle
@@ -214,6 +211,7 @@ typedef SWIFT_ENUM(NSInteger, ConfigurationLocation) {
214211
SWIFT_CLASS("_TtC15PredixMobileSDK14FullTextSearch")
215212
@interface FullTextSearch : NSObject
216213
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
214+
+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
217215
@end
218216

219217
enum LoggerLevel : NSInteger;
@@ -524,6 +522,7 @@ SWIFT_CLASS("_TtC15PredixMobileSDK27PredixMobilityConfiguration")
524522
SWIFT_CLASS("_TtC15PredixMobileSDK21PredixMobilityManager")
525523
@interface PredixMobilityManager : NSObject
526524
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
525+
+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
527526
@end
528527

529528

@@ -650,6 +649,7 @@ SWIFT_PROTOCOL("_TtP15PredixMobileSDK21ServiceRouterProtocol_")
650649
SWIFT_CLASS("_TtC15PredixMobileSDK13ServiceRouter")
651650
@interface ServiceRouter : NSObject <ServiceRouterProtocol>
652651
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
652+
+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
653653
/// Registers the provided service class.
654654
/// \param service class type meeting the ServiceProtocol type.
655655
///
@@ -771,7 +771,10 @@ typedef SWIFT_ENUM(NSInteger, WaitState) {
771771
SWIFT_CLASS("_TtC15PredixMobileSDK15WaitStateReturn")
772772
@interface WaitStateReturn : NSObject
773773
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
774+
+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
774775
@end
775776

776-
SWIFT_MODULE_NAMESPACE_POP
777+
#if __has_attribute(external_source_symbol)
778+
# pragma clang attribute pop
779+
#endif
777780
#pragma clang diagnostic pop
1 Byte
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)