ObjFW  Diff

Differences From Artifact [b34d8ea808]:

To Artifact [6b59f8bebe]:


9
10
11
12
13
14
15







16
17
18
19
20
21
22
 * the packaging of this file.
 */

#import "OFObject.h"

@class OFArray;
@class OFMutableArray;








/**
 * \brief A protocol for delegates of OFApplication.
 */
@protocol OFApplicationDelegate
/**
 * This method is called when the application was initialized and is running







>
>
>
>
>
>
>







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 * the packaging of this file.
 */

#import "OFObject.h"

@class OFArray;
@class OFMutableArray;

#define OF_APPLICATION_DELEGATE(cls)					\
	int								\
	main(int argc, char *argv[])					\
	{								\
		return of_application_main(argc, argv, [cls class]);	\
	}

/**
 * \brief A protocol for delegates of OFApplication.
 */
@protocol OFApplicationDelegate
/**
 * This method is called when the application was initialized and is running