Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/WebKitView.h
diff options
context:
space:
mode:
authorWade Brainerd <wadetb@gmail.com>2008-05-23 22:59:37 (GMT)
committer Wade Brainerd <wadetb@gmail.com>2008-05-23 22:59:37 (GMT)
commit9878512ab181ef56e82d91ed3e69ddbaa50520d0 (patch)
tree879e52bebdea44daa32afaaa8802c183fd9484ed /woip/app/WebKitView.h
parentdd58bf72d6799438d8033cf7de6bc26a711734c3 (diff)
Reorganization step 2.
Diffstat (limited to 'woip/app/WebKitView.h')
-rw-r--r--woip/app/WebKitView.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/woip/app/WebKitView.h b/woip/app/WebKitView.h
new file mode 100644
index 0000000..d038578
--- /dev/null
+++ b/woip/app/WebKitView.h
@@ -0,0 +1,15 @@
+#import <UIKit/UIKit.h>
+#import <UIKit/UIScroller.h>
+#import <UIKit/UIWebView.h>
+
+@interface WebKitView : UIScroller {
+ UIWebView *webView;
+ UIScroller *scroller;
+}
+
+-(id)initWithFrame: (CGRect)frame;
+-(void)loadURL: (NSURL *)url;
+-(void)dealloc;
+-(void)loadString: (NSString *)str;
+
+@end