SVGKParserDOM.h 505 B

12345678910111213
  1. /**
  2. According to the DOM spec, all nodes in an XML document must be parsed; if we lack specific information for them,
  3. i.e. if we have no other, more specific, parser - then we must parse them as the most basic objects, i.e. Node,
  4. Element, etc
  5. This is a special, magical parser that matches "no namespace" - i.e. matches what happens when no namspace was declared\
  6. */
  7. #import <Foundation/Foundation.h>
  8. #import "SVGKParserExtension.h"
  9. @interface SVGKParserDOM : NSObject <SVGKParserExtension>
  10. @end