Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/ArticleView.h
diff options
context:
space:
mode:
Diffstat (limited to 'woip/app/ArticleView.h')
-rw-r--r--woip/app/ArticleView.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/woip/app/ArticleView.h b/woip/app/ArticleView.h
new file mode 100644
index 0000000..87347a0
--- /dev/null
+++ b/woip/app/ArticleView.h
@@ -0,0 +1,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