18 lines
311 B
Objective-C
18 lines
311 B
Objective-C
//
|
|
// HTMLParser.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 04/10/14.
|
|
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HTMLElement.h"
|
|
|
|
@interface HTMLParser : NSObject
|
|
|
|
|
|
- (instancetype)initWithString:(NSString *)string context:(HTMLElement *)context;
|
|
|
|
@end
|