#include <AppKit/AppKit.h>

@class BKBookmarkStore;
@class BookmarkManagerModel;
@class BookmarkManagerView;

@interface BookmarkManager : NSObject
{
  BookmarkManagerView *bookmarkManagerView;
  NSWindow *window;

  BKBookmarkStore *bookmarkStore;
  BookmarkManagerModel *model;
}
- (void) addGroup: (id)sender;
- (void) addBookmark: (id)sender;
- (void) deleteItem: (id)sender;
- (void) openBookmark: (id)sender;
- (void) saveBookmark: (id)sender;
@end



syntax highlighted by Code2HTML, v. 0.9.1