23 lines
503 B
Objective-C
23 lines
503 B
Objective-C
//
|
|
// SpotlightPlaylistEntry.h
|
|
// Cog
|
|
//
|
|
// Created by Matthew Grinshpun on 11/02/08.
|
|
// Copyright 2008 Matthew Leon Grinshpun. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PlaylistEntry.h"
|
|
|
|
|
|
@interface SpotlightPlaylistEntry : PlaylistEntry {
|
|
NSNumber *length;
|
|
NSString *spotlightTrack;
|
|
}
|
|
|
|
+ (SpotlightPlaylistEntry *)playlistEntryWithMetadataItem:(NSMetadataItem *)metadataItem;
|
|
|
|
@property(retain, readwrite) NSNumber *length;
|
|
@property(retain) NSString *spotlightTrack;
|
|
@end
|