home *** CD-ROM | disk | FTP | other *** search
- //
- // UWItem.h
- // URLwell
- //
- // Created by endian on 10.2.05.
- // Copyright (c) 2005 Enigmarelle Development. All rights reserved.
- //
-
- #import <Foundation/Foundation.h>
-
-
- @interface UWItem : NSObject
- {
- NSString *myTitle;
- NSURL *myURL;
- NSCalendarDate *addedDate;
- NSCalendarDate *lastViewedDate;
- BOOL isViewed;
- }
-
- +(UWItem *)itemWithURL:(NSURL *)aURL title:(NSString*)aTitle;
-
- -(void)updateLastViewed;
-
- @end
-