19 lines
278 B
Objective-C
19 lines
278 B
Objective-C
/*
|
|
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
|