28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*!
* @class OFXMLElement OFXMLElement.h ObjFW/OFXMLElement.h
*
* @brief A class which stores an XML element.
*/
@interface OFXMLElement: OFXMLNode
{
OFString *_name, *_namespace, *_defaultNamespace;
OFMutableArray OF_GENERIC(OFXMLAttribute *) *_attributes;
OFMutableDictionary OF_GENERIC(OFString *, OFString *) *_namespaces;
OFMutableArray OF_GENERIC(OFXMLNode *) *_children;
}
/*!
* The name of the element.
*/
@property (nonatomic, copy) OFString *name;
|
|
|
|
>
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*!
* @class OFXMLElement OFXMLElement.h ObjFW/OFXMLElement.h
*
* @brief A class which stores an XML element.
*/
@interface OFXMLElement: OFXMLNode
{
OFString *_name, *_Nullable _namespace, *_Nullable _defaultNamespace;
OFMutableArray OF_GENERIC(OFXMLAttribute *) *_Nullable _attributes;
OFMutableDictionary OF_GENERIC(OFString *, OFString *) *_Nullable
_namespaces;
OFMutableArray OF_GENERIC(OFXMLNode *) *_Nullable _children;
}
/*!
* The name of the element.
*/
@property (nonatomic, copy) OFString *name;
|