123456789101112131415161718192021 |
- //
- // DocumentFragment.m
- // SVGKit
- //
- // Created by adam on 22/05/2012.
- // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
- //
- #import "DocumentFragment.h"
- @implementation DocumentFragment
- - (id)init
- {
- self = [super initType:DOMNodeType_DOCUMENT_FRAGMENT_NODE name:nil];
- if (self) {
-
- }
- return self;
- }
- @end
|