18 lines
285 B
Objective-C
18 lines
285 B
Objective-C
//
|
|
// HTMLComment.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 25/02/15.
|
|
// Copyright (c) 2015 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import "HTMLNode.h"
|
|
|
|
@interface HTMLComment : HTMLNode
|
|
|
|
@property (nonatomic, copy) NSString *data;
|
|
|
|
- (instancetype)initWithData:(NSString *)data;
|
|
|
|
@end
|