Refactor HTML Tokens into separate files
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// HTMLCharacterToken.h
|
||||
// HTMLKit
|
||||
//
|
||||
// Created by Iska on 23/10/14.
|
||||
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "HTMLToken.h"
|
||||
|
||||
@interface HTMLCharacterToken : HTMLToken
|
||||
|
||||
@property (nonatomic, copy) NSString *characters;
|
||||
|
||||
- (instancetype)initWithCharacter:(UTF32Char)character;
|
||||
- (instancetype)initWithString:(NSString *)string;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user