VirtualBox

Changeset 28163 in vbox for trunk/include


Ignore:
Timestamp:
Apr 11, 2010 5:15:21 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
59895
Message:

IPRT: xml optimizations, preps for better namespace support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cpp/xml.h

    r27918 r28163  
    4848typedef xmlError *xmlErrorPtr;
    4949
     50typedef struct _xmlAttr xmlAttr;
     51typedef struct _xmlNode xmlNode;
     52
    5053namespace xml
    5154{
     
    454457    int isElement()
    455458    {
    456         return mType == IsElement;
     459        return m_Type == IsElement;
    457460    }
    458461
    459462protected:
    460463    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
    462472
    463473    // 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);
    465478    Node(const Node &x);      // no copying
    466479
     
    517530protected:
    518531    // hide the default constructor so people use only our factory methods
    519     ElementNode();
     532    ElementNode(Node *pParent, xmlNode *plibNode);
    520533    ElementNode(const ElementNode &x);      // no copying
    521534
     
    531544protected:
    532545    // hide the default constructor so people use only our factory methods
    533     ContentNode();
     546    ContentNode(Node *pParent, xmlNode *plibNode);
    534547    ContentNode(const ContentNode &x);      // no copying
    535548
     
    544557protected:
    545558    // hide the default constructor so people use only our factory methods
    546     AttributeNode();
     559    AttributeNode(Node *pParent, xmlAttr *plibAttr);
    547560    AttributeNode(const AttributeNode &x);      // no copying
    548561
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette