24 lines
503 B
Objective-C
24 lines
503 B
Objective-C
//
|
|
// EntriesController.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 2/10/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PlaylistEntry.h"
|
|
|
|
@interface EntriesController : NSObject {
|
|
NSUndoManager *undoManager;
|
|
NSMutableArray *playlistEntries;
|
|
}
|
|
|
|
- (NSMutableArray *)entries;
|
|
- (void)setEntries:(NSMutableArray *)array;
|
|
- (void)insertObject:(PlaylistEntry *)pe inEntriesAtIndex:(int)index;
|
|
- (void)removeObjectFromEntriesAtIndex:(int)index;
|
|
|
|
|
|
@end
|