Put NSAutoreleasePool usage around other distributed notification observer methods
[adiumx.git] / Source / AIListBookmark.h
blob7f7e8f794b5ae0be46ae6df156b3cbfd8638c9f3
1 //
2 // AIListBookmark.h
3 // Adium
4 //
5 // Created by Chloe Haney on 19/07/07.
6 //
8 #import <Cocoa/Cocoa.h>
9 #import <AIListContact.h>
10 #import <AIAccount.h>
11 #import <AIListGroup.h>
13 @interface AIListBookmark : AIListContact <NSCoding> {
14 NSDictionary *chatCreationDictionary;
16 NSString *password;
17 NSString *name;
20 - (id)initWithChat:(AIChat *)inChat;
22 - (NSString*)name;
23 - (NSDictionary*)chatCreationDictionary;
25 - (void)openChat;
27 @end