cog/Spotlight/SpotlightPlaylistController.h

20 lines
508 B
C
Raw Normal View History

//
// SpotlightPlaylistController.h
// Cog
//
// Created by Matthew Grinshpun on 13/02/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PlaylistController.h"
2008-02-13 23:51:36 +00:00
#import "SpotlightWindowController.h"
@interface SpotlightPlaylistController : PlaylistController {
2008-02-13 23:51:36 +00:00
IBOutlet SpotlightWindowController * spotlightWindowController;
}
- (BOOL)tableView:(NSTableView *)tv writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard*)pboard;
@end