00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray, NSString;
00010
00011 @interface MLPhotoAlbum : NSObject
00012 {
00013 int _albumID;
00014 NSString *_albumName;
00015 NSMutableArray *_images;
00016 id _posterImage;
00017 BOOL _isLibrary;
00018 unsigned long long _playlistID;
00019 unsigned long long _songID;
00020 }
00021
00022 + (id)libraryAlbum;
00023 - (id)initWithAlbumID:(unsigned int)fp8 albumName:(id)fp12;
00024 - (void)dealloc;
00025 - (id)description;
00026 - (unsigned int)albumID;
00027 - (id)name;
00028 - (void)setName:(id)fp8;
00029 - (BOOL)isLibrary;
00030 - (void)setLibrary:(BOOL)fp8;
00031 - (id)images;
00032 - (id)imageWithImageID:(int)fp8;
00033 - (int)count;
00034 - (void)deleteImageAtIndex:(int)fp8;
00035 - (unsigned long long)slideshowPlaylistID;
00036 - (void)setSlideshowPlaylistID:(unsigned long long)fp8;
00037 - (unsigned long long)slideshowSongID;
00038 - (void)setSlideshowSongID:(unsigned long long)fp8;
00039
00040 @end
00041