public
Description: An XMPP Framework in Objective-C for the Cocoa development community. The framework can be used for desktop applications or iPhone applications.
Homepage: http://code.google.com/p/xmppframework/
Clone URL: git://github.com/tinycode/xmppframework.git
xmppframework / ChatWindowManager.h
100644 14 lines (8 sloc) 0.306 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import <Cocoa/Cocoa.h>
@class XMPPClient;
@class XMPPUser;
@class XMPPMessage;
 
 
@interface ChatWindowManager : NSObject
 
+ (void)openChatWindowWithXMPPClient:(XMPPClient *)xc forXMPPUser:(XMPPUser *)user;
 
+ (void)handleChatMessage:(XMPPMessage *)message withXMPPClient:(XMPPClient *)client;
 
@end