Comment.m 341 B

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