SFS2X Objective-C API
1.7.13
iOS / macOS / tvOS
LogicOperator.h
1
//
2
// LogicOperator.h
3
// SFS2X
4
//
5
// Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6
//
7
// Maintained and developed by A51 Integrated.
8
// Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9
//
10
11
#import <Foundation/Foundation.h>
12
13
/** The LogicOperator is used to concatenate two MatchExpression together using a logical AND / OR operator
14
15
@see MatchExpression
16
*/
17
@interface
LogicOperator
: NSObject {
18
19
NSString *__weak _id;
20
}
21
22
-(id)initWithId:(NSString *)id_;
23
24
/** @return an LogicOperator instance */
25
+(
LogicOperator
*)logicOperatorAnd;
26
27
/** @return an LogicOperator instance */
28
+(
LogicOperator
*)logicOperatorOr;
29
30
@property
(weak, readonly) NSString *
id
;
31
32
@end
LogicOperator
Definition:
LogicOperator.h:17
SFS2X-ObjC-API
Classes
SFS2X
LogicOperator.h
Generated by
1.8.17