DocumentFragment.h 278 B

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