2008-02-11 14:10:25 +00:00
|
|
|
//
|
|
|
|
// SpotlightPlaylistEntry.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Matthew Grinshpun on 11/02/08.
|
2008-02-14 14:07:10 +00:00
|
|
|
// Copyright 2008 Matthew Leon Grinshpun. All rights reserved.
|
2008-02-11 14:10:25 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PlaylistEntry.h"
|
|
|
|
|
|
|
|
|
2008-02-11 16:39:19 +00:00
|
|
|
@interface SpotlightPlaylistEntry : PlaylistEntry {
|
|
|
|
NSNumber *length;
|
2008-03-03 23:02:52 +00:00
|
|
|
NSString *spotlightTrack;
|
2008-02-11 16:39:19 +00:00
|
|
|
}
|
2008-02-11 14:10:25 +00:00
|
|
|
|
2008-02-13 18:47:24 +00:00
|
|
|
+ (SpotlightPlaylistEntry *)playlistEntryWithMetadataItem:(NSMetadataItem *)metadataItem;
|
2008-02-11 14:10:25 +00:00
|
|
|
|
2008-02-29 20:09:59 +00:00
|
|
|
@property(retain, readwrite) NSNumber *length;
|
2008-03-03 23:02:52 +00:00
|
|
|
@property(retain) NSString *spotlightTrack;
|
2008-02-11 14:10:25 +00:00
|
|
|
@end
|