// // SectionDictionary.h // PicCast // // Created by Matthew Handler on 4/23/11. // Copyright 2011 Earl Industries. All rights reserved. // #import @interface SectionDictionary : NSObject { NSInteger index; NSMutableDictionary *indexMap; NSMutableDictionary *theRealDictionary; } - (void) appendObject:(id)anObject forKey:(id)aKey; - (void) setObject:(id)anObject forKey:(id)aKey; - (id) objectForIndex:(NSInteger)i; - (NSString *) keyForIndex:(NSInteger)i; @end