]> err.no Git - sope/blob - sopex/SOPEX/SOPEXWebMetaParser.h
fixed a warning
[sope] / sopex / SOPEX / SOPEXWebMetaParser.h
1 //
2 //  SOPEXWebMetaParser.h
3 //  WebKitTest2
4 //
5 //  Created by Helge Hess on Thu Nov 06 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @class NSMutableArray, NSMutableDictionary;
12
13 @interface SOPEXWebMetaParser : NSObject 
14 {
15   NSMutableDictionary *meta;
16   NSMutableArray      *links;
17 }
18
19 + (id)sharedWebMetaParser;
20
21 /* parsing */
22
23 - (void)processHTML:(NSString *)_html 
24   meta:(NSDictionary **)_meta
25   links:(NSArray **)_links;
26
27 @end