blob: f227e44722f1cf969ef16a25cdc40d757b554473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// SectionDictionary.h
// PicCast
//
// Created by Matthew Handler on 4/23/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import <Foundation/Foundation.h>
@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
|