36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
*
* @param timer The timer which fired
*/
typedef void (^OFTimerBlock)(OFTimer *timer);
#endif
/**
* @class OFTimer OFTimer.h ObjFW/OFTimer.h
*
* @brief A class for creating and firing timers.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFTimer: OFObject <OFComparing>
{
OFDate *_fireDate;
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
*
* @param timer The timer which fired
*/
typedef void (^OFTimerBlock)(OFTimer *timer);
#endif
/**
* @class OFTimer OFTimer.h ObjFW/ObjFW.h
*
* @brief A class for creating and firing timers.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFTimer: OFObject <OFComparing>
{
OFDate *_fireDate;
|