15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
-
+
+
+
+
+
+
+
+
+
|
#include <stdint.h>
#import <objc/objc.h>
/**
* A result of a comparison.
*/
typedef enum {
typedef enum __of_comparison_result {
/// The left object is smaller than the right
OF_ORDERED_ASCENDING = -1,
/// Both objects are equal
OF_ORDERED_SAME = 0,
/// The left object is bigger than the right
OF_ORDERED_DESCENDING = 1
} of_comparison_result_t;
/**
* A range.
*/
typedef struct __of_range {
size_t start;
size_t length;
} of_range_t;
/**
* The OFObject class is the base class for all other classes inside ObjFW.
*/
@interface OFObject
{
/// The class of the object
Class isa;
|