CDATASection.m 367 B

1234567891011121314151617181920
  1. //
  2. // CDATASection.m
  3. // SVGKit
  4. //
  5. // Created by adam on 22/05/2012.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import "CDATASection.h"
  9. @implementation CDATASection
  10. - (id)initWithValue:(NSString*) v
  11. {
  12. self = [super initType:DOMNodeType_CDATA_SECTION_NODE name:@"#cdata-section" value:v];
  13. if (self) {
  14. }
  15. return self;
  16. }
  17. @end