back to a stable point. login: successful. XPath query is failing, but we no longer...
[deliciousMeal.git] / DeliciousPage.h
blob05b17441d2048cdfee7d6f1350fb958a8c1b1366
1 //
2 // DeliciousPage.h
3 // DeliciousMeal
4 //
5 // Created by Christopher Bowns on 12/21/07.
6 // Copyright 2007-2008 Mechanical Pants Software. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
12 @interface DeliciousPage : NSObject {
13 int bookmarkCount;
14 NSURL *pageUrl;
15 NSString *hashValue;
19 TODO add an initWithBookmarkCount: andHashValue: and pageUrl: method for ease of life.
20 should it take a string or an NSURL? do we even NEED an NSURL here? no idea.
23 - (int)bookmarkCount;
24 - (void)setBookmarkCount:(int)aBookmarkCount;
26 - (NSURL *)pageUrl;
27 - (void)setPageUrl:(NSURL *)aPageUrl;
29 TODO object conversion needed?
31 // - (void)setPageUrl:(NSString *)aPageUrl;
34 - (NSString *)hashValue;
35 - (void)setHashValue:(NSString *)aHashValue;
37 @end