The accounts menu now distinguishes accounts which are on a service compatible with...
[adiumx.git] / Source / AIChatController.h
blob904146bba3081b4db61ba3d110d895f03d7e3c4a
1 //
2 // AIChatController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 6/10/05.
6 //
8 #import <Adium/AIObject.h>
9 #import <Adium/AIChatControllerProtocol.h>
11 @class AIChat, AdiumChatEvents;
13 @interface AIChatController : AIObject <AIChatController> {
14 NSMutableSet *openChats;
15 NSMutableArray *chatObserverArray;
17 AIChat *mostRecentChat;
19 NSMenuItem *menuItem_ignore;
21 AdiumChatEvents *adiumChatEvents;
24 @end