1234567891011121314151617181920 |
- //
- // CDATASection.m
- // SVGKit
- //
- // Created by adam on 22/05/2012.
- // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
- //
- #import "CDATASection.h"
- @implementation CDATASection
- - (id)initWithValue:(NSString*) v
- {
- self = [super initType:DOMNodeType_CDATA_SECTION_NODE name:@"#cdata-section" value:v];
- if (self) {
- }
- return self;
- }
- @end
|