RSSKit  0.6.1
RSSArticle+Storage.h
1 /* -*-objc-*-
2  *
3  * GNUstep RSS Kit
4  * Copyright (C) 2006 Guenther Noack
5  * 2012 The Free Software Foundation
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation, in version 2.1
10  * of the License
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21 
22 #import "RSSArticle.h"
23 
25 
26 
30 +(id<RSSMutableArticle>)articleFromStorageWithURL: (NSString*) anURL;
31 
35 -(id)initFromStorageWithURL: (NSString*) anURL;
36 
40 -(id)initWithDictionary: (NSDictionary*) aDictionary;
41 
45 -(BOOL) store;
46 
50 -(NSMutableDictionary*) plistDictionary;
51 
52 @end
53 
Definition: RSSArticle+Storage.h:24
Definition: RSSArticleProtocol.h:114