ObjXMPP  Check-in [6a978bc7bf]

Overview
Comment:Add missing import
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6a978bc7bfa56011a8c3485e088b610e62baaf52fefbcbee0767775895acc7a6
User & Date: florob@babelmonkeys.de on 2012-02-03 15:00:33
Other Links: manifest | tags
Context
2012-02-03
15:12
Documentation improvements. check-in: e701117140 user: js tags: trunk
15:00
Add missing import check-in: 6a978bc7bf user: florob@babelmonkeys.de tags: trunk
14:36
Update Xcode project. check-in: 9731fdfde0 user: js tags: trunk
Changes

Modified src/XMPPConnection.m from [b72bf77860] to [2fe019cc16].

45
46
47
48
49
50
51

52
53
54
55
56
57
58
#import "XMPPStanza.h"
#import "XMPPJID.h"
#import "XMPPIQ.h"
#import "XMPPMessage.h"
#import "XMPPPresence.h"
#import "XMPPMulticastDelegate.h"
#import "XMPPExceptions.h"

#import "namespaces.h"

@implementation XMPPConnection
+ connection
{
	return [[[self alloc] init] autorelease];
}







>







45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#import "XMPPStanza.h"
#import "XMPPJID.h"
#import "XMPPIQ.h"
#import "XMPPMessage.h"
#import "XMPPPresence.h"
#import "XMPPMulticastDelegate.h"
#import "XMPPExceptions.h"
#import "XMPPXMLElementBuilder.h"
#import "namespaces.h"

@implementation XMPPConnection
+ connection
{
	return [[[self alloc] init] autorelease];
}