1234567891011121314151617 |
- /*
- From SVG-DOM, via Core DOM:
-
- http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-B63ED1A3
-
- interface DocumentFragment : Node {
- };
- */
- #import <Foundation/Foundation.h>
- /** objc won't allow this: @class Node;*/
- #import "Node.h"
- @interface DocumentFragment : Node
- @end
|