File: ArticleViewing.h

package info (click to toggle)
grr.app 0.6.2.dfsg-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,024 kB
  • ctags: 55
  • sloc: objc: 3,418; makefile: 62
file content (46 lines) | stat: -rw-r--r-- 1,138 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
   Project: Grr

   Copyright (C) 2005-2006 Free Software Foundation

   Author: Guenther Noack

   Created: 2005-03-25 23:23:45 +0100 by guenther

   This application is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License version 2 as published by the Free Software Foundation;

   This application is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/

#ifndef _ARTICLEVIEWING_H_
#define _ARTICLEVIEWING_H_

#import <Foundation/Foundation.h>
#import <RSSKit/RSSFeed.h>
#import "RSSReaderArticle.h"

#import "MainController.h"


@interface RSSArticle (ArticleViewing)

+ (void) viewNone;

+ (RSSArticle*) currentlyViewed;


- (void) viewArticle;

@end

#endif // _ARTICLEVIEWING_H_