Add class stubs for HTML tokenizer implementation

https://html.spec.whatwg.org/multipage/syntax.html#tokenization
This commit is contained in:
iska
2014-09-20 23:04:23 +02:00
parent fb9dcaa608
commit fb01febfca
7 changed files with 106 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
//
// HTMLToken.h
// HTMLKit
//
// Created by Iska on 20/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HTMLToken : NSObject
@end
+13
View File
@@ -0,0 +1,13 @@
//
// HTMLToken.m
// HTMLKit
//
// Created by Iska on 20/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import "HTMLToken.h"
@implementation HTMLToken
@end
+13
View File
@@ -0,0 +1,13 @@
//
// HTMLTokenizer.h
// HTMLKit
//
// Created by Iska on 19/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HTMLTokenizer : NSObject
@end
+13
View File
@@ -0,0 +1,13 @@
//
// HTMLTokenizer.m
// HTMLKit
//
// Created by Iska on 19/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import "HTMLTokenizer.h"
@implementation HTMLTokenizer
@end
+13
View File
@@ -0,0 +1,13 @@
//
// Header.h
// HTMLKit
//
// Created by Iska on 20/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#ifndef HTMLKit_Header_h
#define HTMLKit_Header_h
#endif
+13
View File
@@ -0,0 +1,13 @@
//
// HTMLTokenizerStates.h
// HTMLKit
//
// Created by Iska on 20/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#ifndef HTMLKit_HTMLTokenizerStates_h
#define HTMLKit_HTMLTokenizerStates_h
#endif