2008-02-13 13:10:59 -03:00
|
|
|
//
|
|
|
|
// 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 20:51:36 -03:00
|
|
|
#import "SpotlightWindowController.h"
|
2008-02-13 13:10:59 -03:00
|
|
|
|
|
|
|
@interface SpotlightPlaylistController : PlaylistController {
|
2008-02-13 20:51:36 -03:00
|
|
|
IBOutlet SpotlightWindowController * spotlightWindowController;
|
2008-02-13 13:10:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)tableView:(NSTableView *)tv writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard*)pboard;
|
|
|
|
|
|
|
|
@end
|