//
//  BuddyController.h
//  Proteus
//
//  Created by Julian Cain on 6/12/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@class ChatWindowController;

@interface BuddyController : NSObject {

    NSTableView * _buddiesTableView;
    
    ChatWindowController * _chatWindowController;
}

@property (nonatomic, retain) IBOutlet NSTableView * buddiesTableView;
@property (nonatomic, retain) ChatWindowController * chatWindowController;

@end
