CDATASection.h 278 B

123456789101112131415161718
  1. /*
  2. From SVG-DOM, via Core DOM:
  3. http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-667469212
  4. interface CDATASection : Text {
  5. };
  6. */
  7. #import <Foundation/Foundation.h>
  8. @class Text;
  9. #import "Text.h"
  10. @interface CDATASection : Text
  11. - (id)initWithValue:(NSString*) v;
  12. @end