|
Revision 26, 504 bytes
(checked in by ngerakines, 3 years ago)
|
|
many updates -- too numerous to mention
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // TypePadSuper.h |
|---|
| 3 | // Fence |
|---|
| 4 | // |
|---|
| 5 | // Created by Nicholas Gerakines on 5/20/06. |
|---|
| 6 | // Copyright 2006 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <Cocoa/Cocoa.h> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | @interface TypePadSuper : NSObject { |
|---|
| 13 | NSMutableDictionary *blogs; |
|---|
| 14 | NSMutableDictionary *galleries; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | - (NSMutableDictionary *) blogs; |
|---|
| 18 | - (void) setBlogs: (NSMutableDictionary *) Blogs; |
|---|
| 19 | |
|---|
| 20 | - (NSMutableDictionary *) galleries; |
|---|
| 21 | - (void) setGalleries: (NSMutableDictionary *) Galleries; |
|---|
| 22 | |
|---|
| 23 | - (void) resetBlogs; |
|---|
| 24 | - (void) resetGalleries; |
|---|
| 25 | |
|---|
| 26 | @end |
|---|