summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r--xfa/fxfa/parser/cxfa_node.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h
index 374e8e55bf..fe1c3e007f 100644
--- a/xfa/fxfa/parser/cxfa_node.h
+++ b/xfa/fxfa/parser/cxfa_node.h
@@ -182,7 +182,12 @@ class CXFA_Node : public CXFA_Object {
bool RemoveChild(CXFA_Node* pNode, bool bNotify);
CXFA_Node* Clone(bool bRecursive);
- CXFA_Node* GetNodeItem(XFA_NODEITEM eItem) const;
+
+ CXFA_Node* GetNextSibling() const { return m_pNext; }
+ CXFA_Node* GetPrevSibling() const;
+ CXFA_Node* GetFirstChild() const { return m_pChild; }
+ CXFA_Node* GetParent() const { return m_pParent; }
+
CXFA_Node* GetNodeItem(XFA_NODEITEM eItem, XFA_ObjectType eType) const;
std::vector<CXFA_Node*> GetNodeList(uint32_t dwTypeFilter,