summaryrefslogtreecommitdiffstats
path: root/Classes/SectionDictionary.h
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-24 21:00:46 -0400
committermatt handler <matt.handler@gmail.com>2011-04-24 21:00:46 -0400
commit663d25e5160e97eefed1444bac0b4ac964f3368e (patch)
tree530aa0ecb4c34704de7c5f51873056b4e0748d35 /Classes/SectionDictionary.h
parenta14cc19fb021a74be4c2d756eab040c95b3a487e (diff)
downloadpiccast-app-663d25e5160e97eefed1444bac0b4ac964f3368e.tar.gz
piccast-app-663d25e5160e97eefed1444bac0b4ac964f3368e.zip
still a bit off from a solid state... added fmdatabase, updated acidcow parser with a formate, added some standard stuff to piccast app delegate, created a section dictionary, did some serializing to/from db for topics, added a bunch of logic to topic view controller, added db table
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