123456789101112131415161718 |
- /*
- From SVG-DOM, via Core DOM:
-
- http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-667469212
-
- interface CDATASection : Text {
- };
- */
- #import <Foundation/Foundation.h>
- @class Text;
- #import "Text.h"
- @interface CDATASection : Text
- - (id)initWithValue:(NSString*) v;
- @end
|