summaryrefslogtreecommitdiffstats
path: root/Classes/SectionDictionary.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/SectionDictionary.h')
-rw-r--r--Classes/SectionDictionary.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Classes/SectionDictionary.h b/Classes/SectionDictionary.h
new file mode 100644
index 0000000..f227e44
--- /dev/null
+++ b/Classes/SectionDictionary.h
@@ -0,0 +1,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