00001 #ifndef X3DTK_X3D_STATICGROUP_H 00002 #define X3DTK_X3D_STATICGROUP_H 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DChildNode.h" 00006 #include "X3D_X3DBoundedObject.h" 00007 00008 namespace X3DTK { 00009 namespace X3D { 00010 00019 class StaticGroup : public X3DChildNode, public X3DBoundedObject 00020 { 00021 public: 00023 StaticGroup(); 00024 00026 inline const MFNode &getChildren() const {return _children;}; 00027 00028 private: 00030 MFNode _children; 00031 }; 00032 00033 } 00034 } 00035 00036 #endif