DocumentFragment.m 341 B

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