2025-10-09 16:48:46 +08:00

17 lines
277 B
Objective-C

/*
From SVG-DOM, via Core DOM:
http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-11C98490
interface EntityReference : Node {
};
*/
#import <Foundation/Foundation.h>
/** objc won't allow this: @class Node; */
#import "Node.h"
@interface EntityReference : Node
@end