|
Revision 41, 0.5 kB
(checked in by ngerakines, 3 years ago)
|
|
* Put into place the real icons that Wiley sent over
* Fixed the prefs on login
* Removed the TypePadSuper class
* General code cleanup
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // TypePadGallery.h |
|---|
| 3 | // Fence |
|---|
| 4 | // |
|---|
| 5 | // Created by Nicholas Gerakines on 5/15/06. |
|---|
| 6 | // Copyright 2006 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <Cocoa/Cocoa.h> |
|---|
| 10 | |
|---|
| 11 | @interface TypePadGallery : NSObject { |
|---|
| 12 | NSString *_GalleryID; |
|---|
| 13 | NSString *_GalleryURL; |
|---|
| 14 | NSString *_GalleryTitle; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | - (NSString *) galleryID; |
|---|
| 18 | - (void) setGalleryID: (NSString *) GalleryID; |
|---|
| 19 | |
|---|
| 20 | - (NSString *) galleryURL; |
|---|
| 21 | - (void) setGalleryURL: (NSString *) GalleryURL; |
|---|
| 22 | |
|---|
| 23 | - (NSString *) galleryTitle; |
|---|
| 24 | - (void) setGalleryTitle: (NSString *) GalleryTitle; |
|---|
| 25 | |
|---|
| 26 | @end |
|---|