13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
* file.
*/
#import "OFDate.h"
OF_ASSUME_NONNULL_BEGIN
#if defined(OF_OBJFW_RUNTIME) && UINTPTR_MAX == UINT64_MAX
@interface OFTaggedPointerDate: OFDate
+ (OFTaggedPointerDate *)dateWithUInt64TimeIntervalSince1970: (uint64_t)value;
@end
#endif
OF_ASSUME_NONNULL_END
|
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
* file.
*/
#import "OFDate.h"
OF_ASSUME_NONNULL_BEGIN
#if UINTPTR_MAX == UINT64_MAX
@interface OFTaggedPointerDate: OFDate
+ (OFTaggedPointerDate *)dateWithUInt64TimeIntervalSince1970: (uint64_t)value;
@end
#endif
OF_ASSUME_NONNULL_END
|