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-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-18 12:59:20 +00:00
|
|
|
// New length getters/setters
|
|
|
|
|
|
|
|
@property(retain) NSNumber *length;
|
2008-02-11 14:10:25 +00:00
|
|
|
@end
|