diff -r 000000000000 -r 2d492d8c2053 IChatUtils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IChatUtils.h Fri Apr 18 09:25:10 2008 -0700 @@ -0,0 +1,21 @@ +// +// IChatUtils.h +// MYUtilities +// +// Created by Jens Alfke on 3/3/08. +// Copyright 2008 Jens Alfke. All rights reserved. +// + +#import +@class SBApplication; + + +@interface IChatUtils : NSObject + ++ (SBApplication*) app; ++ (BOOL) isRunning; ++ (void) activate; ++ (NSString*) activeChatPartner; ++ (BOOL) sendMessage: (NSString*)msg; + +@end