00001 #ifndef X3DTK_MESH_X3DGROUPINGNODE 00002 #define X3DTK_MESH_X3DGROUPINGNODE 00003 00004 #include "X3D_SceneGraphTypes.h" 00005 #include "MESH_X3DNode.h" 00006 00007 namespace X3DTK { 00008 namespace MESH { 00009 00016 class X3DGroupingNode : public X3DNode 00017 { 00018 public: 00020 X3DGroupingNode(); 00022 virtual ~X3DGroupingNode(); 00023 00026 inline const MFNode &getChildren() const {return _children;}; 00028 inline const MFNode &getX3DChildren() const {return _x3dChildren;}; 00029 00030 private: 00031 MFNode _children; 00032 MFNode _x3dChildren; 00033 }; 00034 00035 } 00036 } 00037 00038 #endif