From 3913ab898f2c2ecc3b638eca4681957b1cf74330 Mon Sep 17 00:00:00 2001 From: Iván Ávalos Date: Sat, 5 Feb 2022 19:17:10 -0600 Subject: Removed SwiftUIFlowLayout dependency and updated WhirlyGlobe-Maply to latest develop version --- .../WhirlyGlobe.framework/Headers/SLDOperators.h | 101 +++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 iosApp/WhirlyGlobe.xcframework/ios-arm64/WhirlyGlobe.framework/Headers/SLDOperators.h (limited to 'iosApp/WhirlyGlobe.xcframework/ios-arm64/WhirlyGlobe.framework/Headers/SLDOperators.h') diff --git a/iosApp/WhirlyGlobe.xcframework/ios-arm64/WhirlyGlobe.framework/Headers/SLDOperators.h b/iosApp/WhirlyGlobe.xcframework/ios-arm64/WhirlyGlobe.framework/Headers/SLDOperators.h new file mode 100644 index 0000000..746695e --- /dev/null +++ b/iosApp/WhirlyGlobe.xcframework/ios-arm64/WhirlyGlobe.framework/Headers/SLDOperators.h @@ -0,0 +1,101 @@ +// +// SLDOperators.h +// SLDTest +// +// Created by Ranen Ghosh on 2016-08-12. +// Copyright 2016-2019 mousebird consulting. +// + +#import +#import + +/** @brief Base class for elements of ogc:comparisonOps or ogc:logicOps. + + Elements of ogc:spatialOps are not supported. + @see http://schemas.opengis.net/filter/1.1.0/filter.xsd for SLD v1.1.0 + @see http://schemas.opengis.net/filter/1.0.0/filter.xsd for SLD v1.0.0 + */ +@interface SLDOperator : NSObject +@property (nonatomic, strong) NSPredicate * _Nonnull predicate; ++ (BOOL)matchesElementNamed:(NSString * _Nonnull)elementName; ++ (SLDOperator * _Nullable)operatorForNode:(DDXMLNode * _Nonnull )node; +@end + + +/** @brief Class corresponding to the ogc:BinaryComparisonOpType elements + @see http://schemas.opengis.net/filter/1.1.0/expr.xsd for SLD v1.1.0 + @see http://schemas.opengis.net/filter/1.0.0/expr.xsd for SLD v1.0.0 + */ +@interface SLDBinaryComparisonOperator : SLDOperator + +@property (nonatomic, assign) BOOL matchCase; +@property (nonatomic, strong) NSString * _Nonnull elementName; + +@property (nonatomic, strong) SLDExpression * _Nonnull leftExpression; +@property (nonatomic, strong) SLDExpression * _Nonnull rightExpression; + + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + + +@interface SLDIsNullOperator : SLDOperator + +@property (nonatomic, strong) SLDExpression * _Nonnull subExpression; + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + + +@interface SLDIsLikeOperator : SLDOperator + +@property (nonatomic, strong, nullable) NSString *wildCardStr; +@property (nonatomic, strong, nullable) NSString *singleCharStr; +@property (nonatomic, strong, nullable) NSString *escapeCharStr; +@property (nonatomic, assign) BOOL matchCase; +@property (nonatomic, strong) SLDPropertyNameExpression * _Nonnull propertyExpression; +@property (nonatomic, strong) SLDLiteralExpression * _Nonnull literalExpression; + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + +@interface SLDIsBetweenOperator : SLDOperator + +@property (nonatomic, strong) SLDExpression * _Nonnull subExpression; +@property (nonatomic, strong) SLDExpression * _Nonnull lowerBoundaryExpression; +@property (nonatomic, strong) SLDExpression * _Nonnull upperBoundaryExpression; + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + + + +/** @brief Class corresponding to the ogc:Not element + @see http://schemas.opengis.net/filter/1.1.0/expr.xsd for SLD v1.1.0 + @see http://schemas.opengis.net/filter/1.0.0/expr.xsd for SLD v1.0.0 + */ +@interface SLDNotOperator : SLDOperator + +@property (nonatomic, strong) SLDOperator * _Nonnull subOperator; + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + +/** @brief Class corresponding to the ogc:BinaryLogicOpType elements + @see http://schemas.opengis.net/filter/1.1.0/expr.xsd for SLD v1.1.0 + @see http://schemas.opengis.net/filter/1.0.0/expr.xsd for SLD v1.0.0 + */ +@interface SLDLogicalOperator : SLDOperator + +@property (nonatomic, strong) NSString * _Nonnull elementName; +@property (nonatomic, strong) NSArray * _Nonnull subOperators; + +- (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element; + +@end + -- cgit v1.2.3