28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* @brief A name for a notification.
*/
typedef OFConstantString *OFNotificationName;
/**
* @class OFNotification OFNotification.h ObjFW/OFNotification.h
*
* @brief A class to represent a notification for or from
* @ref OFNotificationCenter.
*/
@interface OFNotification: OFObject <OFCopying>
{
OFNotificationName _name;
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* @brief A name for a notification.
*/
typedef OFConstantString *OFNotificationName;
/**
* @class OFNotification OFNotification.h ObjFW/ObjFW.h
*
* @brief A class to represent a notification for or from
* @ref OFNotificationCenter.
*/
@interface OFNotification: OFObject <OFCopying>
{
OFNotificationName _name;
|