IChatUtils.h
changeset 6 2d492d8c2053
child 11 e5976864dfe9
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/IChatUtils.h	Fri Apr 18 09:25:10 2008 -0700
     1.3 @@ -0,0 +1,21 @@
     1.4 +//
     1.5 +//  IChatUtils.h
     1.6 +//  MYUtilities
     1.7 +//
     1.8 +//  Created by Jens Alfke on 3/3/08.
     1.9 +//  Copyright 2008 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <Cocoa/Cocoa.h>
    1.13 +@class SBApplication;
    1.14 +
    1.15 +
    1.16 +@interface IChatUtils : NSObject 
    1.17 +
    1.18 ++ (SBApplication*) app;
    1.19 ++ (BOOL) isRunning;
    1.20 ++ (void) activate;
    1.21 ++ (NSString*) activeChatPartner;
    1.22 ++ (BOOL) sendMessage: (NSString*)msg;
    1.23 +
    1.24 +@end