1 //
2 //  Playlist.h
3 //  PsfPlayer
4 //
5 //  Created by Jean-Philip Desjardins on 27/12/08.
6 //  Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <Cocoa/Cocoa.h>
10 #import "PlaylistItem.h"
11 
12 @interface Playlist : NSObject
13 {
14 	NSMutableArray* m_playList;
15 }
16 
17 - (Playlist*)init;
18 - (void)dealloc;
19 - (void)save;
20 - (int)numberOfRowsInTableView:(NSTableView*)tableView;
21 - (id)tableView:(NSTableView*)tableView objectValueForTableColumn:(NSTableColumn*)tableColumn row:(int)row;
22 - (void)addItem:(PlaylistItem*)item;
23 //-(CVfsManagerBinding*)getBindingAt: (unsigned int)index;
24 
25 @end
26