00001
00002
00003
00004
00005
00006
00007 #import "MLPhotoAlbum.h"
00008
00009 @class MLPhotoDCIMDirectory;
00010
00011 @interface CameraAlbum : MLPhotoAlbum
00012 {
00013 MLPhotoDCIMDirectory *_dcimDirectory;
00014 }
00015
00016 + (id)sharedInstance;
00017 + (void)clearSharedInstance;
00018 - (id)init;
00019 - (void)dealloc;
00020 - (void)dcimContentsDidChange;
00021 - (id)name;
00022 - (id)images;
00023 - (unsigned int)count;
00024 - (id)posterImage;
00025 - (BOOL)addImage:(id)fp8 withPreview:(id)fp12 exifProperties:(id)fp16 date:(id)fp20 jpegData:(struct __CFData *)fp24;
00026 - (void)deleteImageAtIndex:(int)fp8;
00027
00028 @end
00029