00001
00002
00003
00004
00005
00006
00007 #import <MusicLibrary/MLPlaylist.h>
00008
00009 @class MLQuery;
00010
00011 @interface MLPlaylistRep : MLPlaylist
00012 {
00013 unsigned int _isAlbum:1;
00014 unsigned int _albumGroupingProperty;
00015 void *_dulcPtr;
00016 MLQuery *_albumTracksQuery;
00017 }
00018
00019 + (id)playlistRepWithPlaylistPtr:(struct Playlist *)fp8;
00020 + (id)playlistRepWithGroupPlaylistItemPtr:(struct PlaylistItem *)fp8 groupingProperty:(unsigned long)fp12 query:(id)fp16;
00021 - (unsigned int)countOfTracks;
00022 - (void)dealloc;
00023 - (BOOL)isEqual:(id)fp8;
00024 - (unsigned int)hash;
00025 - (BOOL)isPhysicalPlaylist;
00026 - (BOOL)isPurchasedItemsPlaylist;
00027 - (BOOL)isMainPurchasedItemsPlaylist;
00028 - (id)name;
00029 - (unsigned long long)persistentUID;
00030 - (unsigned long)uniqueID;
00031 - (BOOL)isAlbum;
00032 - (id)representativeAlbumTrack;
00033 - (BOOL)_isActiveOnTheGoPlaylist;
00034 - (BOOL)_isMutableUserVisiblePlaylist;
00035 - (BOOL)isUserEditable;
00036 - (void)moveTracksFromRange:(struct _NSRange)fp8 toIndex:(unsigned int)fp16;
00037 - (void)insertTrackFromQuery:(id)fp8 entityIndex:(unsigned int)fp12 atIndex:(unsigned int)fp16;
00038 - (void)insertTracksFromQuery:(id)fp8 entityIndexes:(id)fp12 atIndex:(unsigned int)fp16;
00039 - (void)insertTracks:(id)fp8 atIndex:(unsigned int)fp12;
00040 - (void)removeTracksInRange:(struct _NSRange)fp8;
00041 - (void)saveToFile;
00042
00043 @end
00044