IChatUtils.h
changeset 14 1af6415650bf
parent 0 d84d25d6cdbb
child 17 a1044ae95953
     1.1 --- a/IChatUtils.h	Sat Mar 08 21:04:41 2008 -0800
     1.2 +++ b/IChatUtils.h	Tue Jun 17 14:57:48 2008 -0700
     1.3 @@ -7,7 +7,7 @@
     1.4  //
     1.5  
     1.6  #import <Cocoa/Cocoa.h>
     1.7 -@class SBApplication;
     1.8 +@class SBApplication, ABPerson;
     1.9  
    1.10  
    1.11  @interface IChatUtils : NSObject 
    1.12 @@ -18,4 +18,8 @@
    1.13  + (NSString*) activeChatPartner;
    1.14  + (BOOL) sendMessage: (NSString*)msg;
    1.15  
    1.16 ++ (NSDictionary*) iChatInfoForOnlinePerson: (ABPerson*)abPerson;
    1.17 ++ (BOOL) isPersonOnline: (ABPerson*)abPerson;
    1.18 ++ (BOOL) sendMessage: (NSString*)msg toPerson: (ABPerson*)abPerson;
    1.19 +
    1.20  @end