ObjFW  Check-in [bc218f2c07]

Overview
Comment:Make +[OFDate distant*] a class property
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bc218f2c073543b163955f37b39010b648e246bef534a0af76eef06703327513
User & Date: js on 2017-10-31 22:27:32
Other Links: manifest | tags
Context
2017-11-04
16:01
+[stringWithUTF8StringNoCopy:length:freeWhenDone:] check-in: 1ec122d57c user: js tags: trunk
2017-10-31
22:27
Make +[OFDate distant*] a class property check-in: bc218f2c07 user: js tags: trunk
22:18
OFHTTPClient: Adjust to OFURL change check-in: 35b398fae4 user: js tags: trunk
Changes

Modified src/OFDate.h from [c8a7ef20f0] to [f919b696b5].

27
28
29
30
31
32
33





34
35
36
37
38
39
40
 *
 * @brief A class for storing, accessing and comparing dates.
 */
@interface OFDate: OFObject <OFCopying, OFComparing, OFSerialization>
{
	of_time_interval_t _seconds;
}






/*!
 * The microsecond of the date.
 */
@property (readonly, nonatomic) uint32_t microsecond;

/*!







>
>
>
>
>







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 *
 * @brief A class for storing, accessing and comparing dates.
 */
@interface OFDate: OFObject <OFCopying, OFComparing, OFSerialization>
{
	of_time_interval_t _seconds;
}

#ifdef OF_HAVE_CLASS_PROPERTIES
@property (class, readonly, nonatomic) OFDate *distantFuture;
@property (class, readonly, nonatomic) OFDate *distantPast;
#endif

/*!
 * The microsecond of the date.
 */
@property (readonly, nonatomic) uint32_t microsecond;

/*!