455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/**
* @brief Compares the timer to another timer.
*
* @param timer The timer to compare the string to
* @return The result of the comparison
*/
- (of_comparison_result_t)compare: (OFTimer *)timer;
/**
* @brief Fires the timer, meaning it will execute the specified selector on the
* target.
*/
- (void)fire;
|
|
|
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/**
* @brief Compares the timer to another timer.
*
* @param timer The timer to compare the string to
* @return The result of the comparison
*/
- (OFComparisonResult)compare: (OFTimer *)timer;
/**
* @brief Fires the timer, meaning it will execute the specified selector on the
* target.
*/
- (void)fire;
|