Comment.h 494 B

123456789101112131415161718192021
  1. /*
  2. From SVG-DOM, via Core DOM:
  3. http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1728279322
  4. interface Comment : CharacterData {
  5. };
  6. */
  7. #import <Foundation/Foundation.h>
  8. #import "CharacterData.h"
  9. #ifdef __CARBONCORE__
  10. // macOS's out-of-date Carbon API defined the `Comment` struct and cause naming conflict, so we need re-define it and use macro to avoid changing exist API
  11. #define Comment SVGKComment
  12. #endif
  13. @interface Comment : CharacterData
  14. - (id)initWithValue:(NSString*) v;
  15. @end