diff options
Diffstat (limited to 'graphics/libx3dtk/files/patch-X3DAbstractNode.h')
-rw-r--r-- | graphics/libx3dtk/files/patch-X3DAbstractNode.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/graphics/libx3dtk/files/patch-X3DAbstractNode.h b/graphics/libx3dtk/files/patch-X3DAbstractNode.h new file mode 100644 index 000000000000..514290cfbb3a --- /dev/null +++ b/graphics/libx3dtk/files/patch-X3DAbstractNode.h @@ -0,0 +1,21 @@ +*** include/X3DTK/private/X3DAbstractNode.h.orig Fri Aug 27 13:18:33 2004 +--- include/X3DTK/private/X3DAbstractNode.h Sat Oct 29 12:40:12 2005 +*************** +*** 133,138 **** +--- 133,148 ---- + bool removeParent(const SFNode &N); + }; + ++ inline void X3DAbstractNode_addParentToChild(SFNode parent, SFNode child) { ++ X3DAbstractNode::addParentToChild(parent,child); ++ } ++ inline void X3DAbstractNode_removeParentFromChild(SFNode parent, SFNode child) { ++ X3DAbstractNode::removeParentFromChild(parent,child); ++ } ++ inline SFType * X3DAbstractNode_getType(X3DAbstractNode * node) { ++ return node->getType(); ++ } ++ + } + + #include "X3DAbstractNode.inl" |