|
Revision 41, 0.8 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 | // TypePadWeblogComment.h |
|---|
| 3 | // Fence |
|---|
| 4 | // |
|---|
| 5 | // Created by Nicholas Gerakines on 6/19/06. |
|---|
| 6 | // Copyright 2006 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <Cocoa/Cocoa.h> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | @interface TypePadWeblogComment : NSObject { |
|---|
| 13 | NSString *blogid; |
|---|
| 14 | NSString *commentid; |
|---|
| 15 | NSString *author_name; |
|---|
| 16 | NSString *author_url; |
|---|
| 17 | NSString *author_email; |
|---|
| 18 | NSString *text; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | - (NSString *) blogid; |
|---|
| 22 | - (void) setBlogid: (NSString *) Blogid; |
|---|
| 23 | |
|---|
| 24 | - (NSString *) commentid; |
|---|
| 25 | - (void) setCommentid: (NSString *) Commentid; |
|---|
| 26 | |
|---|
| 27 | - (NSString *) uthor_name; |
|---|
| 28 | - (void) setUthor_name: (NSString *) Uthor_name; |
|---|
| 29 | |
|---|
| 30 | - (NSString *) uthor_url; |
|---|
| 31 | - (void) setUthor_url: (NSString *) Uthor_url; |
|---|
| 32 | |
|---|
| 33 | - (NSString *) uthor_email; |
|---|
| 34 | - (void) setUthor_email: (NSString *) Uthor_email; |
|---|
| 35 | |
|---|
| 36 | - (NSString *) text; |
|---|
| 37 | - (void) setText: (NSString *) Text; |
|---|
| 38 | |
|---|
| 39 | @end |
|---|