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];
}
|