Add header that imports all HTML Nodes for convenience

This commit is contained in:
iska
2015-02-28 00:56:35 +01:00
parent 83bca329ff
commit 79856255da
3 changed files with 18 additions and 2 deletions
+2 -2
View File
@@ -43,9 +43,9 @@ typedef NS_ENUM(short, HTMLNodeType)
@property (nonatomic, strong, readonly) NSOrderedSet *childNodes;
@property (nonatomic, strong, readonly) HTMLNode *firstNode;
@property (nonatomic, strong, readonly) HTMLNode *firstChiledNode;
@property (nonatomic, strong, readonly) HTMLNode *lastNode;
@property (nonatomic, strong, readonly) HTMLNode *lastChildNode;
@property (nonatomic, strong, readonly) HTMLNode *previousSibling;
+14
View File
@@ -0,0 +1,14 @@
//
// HTMLNodes.h
// HTMLKit
//
// Created by Iska on 27/02/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import "HTMLNode.h"
#import "HTMLDocument.h"
#import "HTMLDocumentType.h"
#import "HTMLElement.h"
#import "HTMLComment.h"
#import "HTMLText.h"