diff -r 5936db2c1987 -r 6c3b5372a307 BLIP/Demo/BLIPEchoClient.h --- a/BLIP/Demo/BLIPEchoClient.h Sun May 25 13:43:03 2008 -0700 +++ b/BLIP/Demo/BLIPEchoClient.h Thu Jul 02 19:58:11 2009 -0700 @@ -9,23 +9,24 @@ // #import -@class BLIPConnection; +#import "BLIPConnection.h" +@class MYBonjourBrowser; -@interface BLIPEchoClient : NSObject +@interface BLIPEchoClient : NSObject { IBOutlet NSTextField * inputField; IBOutlet NSTextField * responseField; IBOutlet NSTableView * serverTableView; - NSNetServiceBrowser * _serviceBrowser; - NSMutableArray * _serviceList; - + MYBonjourBrowser * _serviceBrowser; BLIPConnection *_connection; } -@property (readonly) NSMutableArray *serviceList; +@property (readonly) MYBonjourBrowser *serviceBrowser; +@property (readonly) NSArray *serviceList; +- (IBAction)serverClicked:(id)sender; - (IBAction)sendText:(id)sender; @end