cog/Spotlight/SpotlightPlaylistEntry.h

23 lines
437 B
C
Raw Normal View History

//
// SpotlightPlaylistEntry.h
// Cog
//
// Created by Matthew Grinshpun on 11/02/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PlaylistEntry.h"
@interface SpotlightPlaylistEntry : PlaylistEntry {
NSNumber *length;
}
+ (SpotlightPlaylistEntry *)playlistEntryWithMetadataItem:(NSMetadataItem *)metadataItem;
+ (NSArray *)allmdKeys;
@property(copy) NSNumber *length;
@end