Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/ArticleView.h
blob: 87347a078a02f57f45fa2f4af383f8991d858272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <UIKit/UIKit.h>
#import "WebKitView.h"
#import "WPParser.h"
#import "../c/wp.h"

@interface ArticleView : UIView {
	WebKitView *wkv;

  wp_dump *dump;
  wp_article *article;
}
-(void) setPolicyDelegate: (id) obj;
-(void) updateHTML: (NSString *) str;
-(void) setDump: (wp_dump *) d;
-(void) setWikiApp: (id) w;
@end