ObjFW  Check-in [61f26eb211]

Overview
Comment:Add a property for the count of objects in an OFArray.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 61f26eb2110ab64a80bccc062f04a6a35c6ea2f10f0d1d45f99c56847f814efe
User & Date: js on 2012-01-31 13:31:57
Other Links: manifest | tags
Context
2012-01-31
13:39
Rename a few variables that were forgotten in the past. check-in: aef0a226d8 user: js tags: trunk
13:31
Add a property for the count of objects in an OFArray. check-in: 61f26eb211 user: js tags: trunk
11:12
Clean up Xcode project. check-in: dd6b29657f user: js tags: trunk
Changes

Modified src/OFArray.h from [076a252b7d] to [78114d6b0a].

33
34
35
36
37
38
39




40
41
42
43
44
45
46
#endif

/**
 * \brief An abstract class for storing objects in an array.
 */
@interface OFArray: OFObject <OFCopying, OFMutableCopying, OFCollection,
    OFSerialization, OFJSON>




/**
 * \brief Creates a new OFArray.
 *
 * \return A new autoreleased OFArray
 */
+ array;








>
>
>
>







33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#endif

/**
 * \brief An abstract class for storing objects in an array.
 */
@interface OFArray: OFObject <OFCopying, OFMutableCopying, OFCollection,
    OFSerialization, OFJSON>
#ifdef OF_HAVE_PROPERTIES
@property (readonly, assign) size_t count;
#endif

/**
 * \brief Creates a new OFArray.
 *
 * \return A new autoreleased OFArray
 */
+ array;