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