ObjXMPP  Check-in [6d15f9618b]

Overview
Comment:Add missing header files

gcc complains about missing interfaces without this.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6d15f9618ba4caac601347c612950e0f3b6269a8bdb46885814f570df447a7ca
User & Date: florob@babelmonkeys.de on 2012-06-01 22:16:56
Other Links: manifest | tags
Context
2012-06-07
12:19
Adjust to latest ObjFW API changes. check-in: 6a3b21ce25 user: js tags: trunk
2012-06-01
22:16
Add missing header files check-in: 6d15f9618b user: florob@babelmonkeys.de tags: trunk
2012-04-20
19:25
Only broadcast if we have a roster item. check-in: 82b5ab9068 user: js tags: trunk
Changes

Modified src/XMPPExceptions.m from [1ae8403825] to [9ce07a194d].

21
22
23
24
25
26
27

28
29
30
31
32
33
34
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#import "XMPPExceptions.h"


@implementation XMPPException
+ exceptionWithClass: (Class)class_
	  connection: (XMPPConnection*)conn
{
	return [[[self alloc] initWithClass: class_
				 connection: conn] autorelease];







>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#import "XMPPExceptions.h"
#import "XMPPConnection.h"

@implementation XMPPException
+ exceptionWithClass: (Class)class_
	  connection: (XMPPConnection*)conn
{
	return [[[self alloc] initWithClass: class_
				 connection: conn] autorelease];

Modified src/XMPPRosterItem.m from [12d7da2374] to [b55c3a6bd9].

21
22
23
24
25
26
27

28
29
30
31
32
33
34
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#import "XMPPRosterItem.h"


#import <ObjFW/macros.h>

@implementation XMPPRosterItem
+ rosterItem
{
	return [[[self alloc] init] autorelease];







>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#import "XMPPRosterItem.h"
#import "XMPPJID.h"

#import <ObjFW/macros.h>

@implementation XMPPRosterItem
+ rosterItem
{
	return [[[self alloc] init] autorelease];