root/trunk/TypePadWeblog.h @ 41

Revision 41, 1.2 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//  TypePadWeblog.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#import "AtomApi.h"
11
12@interface TypePadWeblog : NSObject {
13        NSString *_WeblogTitle;
14        NSString *_WeblogID;
15        NSString *_WeblogURL;
16        NSMutableDictionary *_categories;
17        NSMutableArray *comments;
18        NSString *authuser;
19        NSString *authpass;
20        BOOL requiresAuth;
21}
22
23- (NSString *) weblogTitle;
24- (void) setWeblogTitle: (NSString *) WeblogTitle;
25
26- (NSString *) weblogID;
27- (void) setWeblogID: (NSString *) WeblogID;
28
29- (NSString *) weblogURL;
30- (void) setWeblogURL: (NSString *) WeblogURL;
31
32- (NSMutableDictionary *) categories;
33- (void) setCategories: (NSMutableDictionary *) Categories;
34
35- (NSMutableArray *) comments;
36- (void) setComments: (NSMutableArray *) Comments;
37
38- (NSString *) authuser;
39- (void) setAuthuser: (NSString *) Authuser;
40
41- (NSString *) authpass;
42- (void) setAuthpass: (NSString *) Authpass;
43
44- (BOOL) requiresAuth;
45- (void) setRequiresAuth: (BOOL) flag;
46
47- (void) setAuth: (NSString *) user pass:(NSString *) pass;
48
49- (void) discoverCategories;
50- (NSString *) parse_catid: (NSString *) tmpstr;
51
52- (void) getComments;
53- (NSString *) parse_commentid: (NSString *) tmpstr;
54
55@end
Note: See TracBrowser for help on using the browser.