Changeset 28163 in vbox for trunk/include
- Timestamp:
- Apr 11, 2010 5:15:21 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59895
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/xml.h
r27918 r28163 48 48 typedef xmlError *xmlErrorPtr; 49 49 50 typedef struct _xmlAttr xmlAttr; 51 typedef struct _xmlNode xmlNode; 52 50 53 namespace xml 51 54 { … … 454 457 int isElement() 455 458 { 456 return m Type == IsElement;459 return m_Type == IsElement; 457 460 } 458 461 459 462 protected: 460 463 typedef enum {IsElement, IsAttribute, IsContent} EnumType; 461 EnumType mType; 464 465 EnumType m_Type; 466 Node *m_pParent; 467 xmlNode *m_plibNode; // != NULL if this is an element or content node 468 xmlAttr *m_plibAttr; // != NULL if this is an attribute node 469 const char *m_pcszNamespace; 470 const char *m_pcszName; // element or attribute name, points either into plibNode or plibAttr; 471 // NULL if this is a content node 462 472 463 473 // hide the default constructor so people use only our factory methods 464 Node(EnumType type); 474 Node(EnumType type, 475 Node *pParent, 476 xmlNode *plibNode, 477 xmlAttr *plibAttr); 465 478 Node(const Node &x); // no copying 466 479 … … 517 530 protected: 518 531 // hide the default constructor so people use only our factory methods 519 ElementNode( );532 ElementNode(Node *pParent, xmlNode *plibNode); 520 533 ElementNode(const ElementNode &x); // no copying 521 534 … … 531 544 protected: 532 545 // hide the default constructor so people use only our factory methods 533 ContentNode( );546 ContentNode(Node *pParent, xmlNode *plibNode); 534 547 ContentNode(const ContentNode &x); // no copying 535 548 … … 544 557 protected: 545 558 // hide the default constructor so people use only our factory methods 546 AttributeNode( );559 AttributeNode(Node *pParent, xmlAttr *plibAttr); 547 560 AttributeNode(const AttributeNode &x); // no copying 548 561
Note:
See TracChangeset
for help on using the changeset viewer.