00001 #ifndef X3DTK_X3D_INLINE_H 00002 #define X3DTK_X3D_INLINE_H 00003 00004 #include "X3D_X3DChildNode.h" 00005 #include "X3D_X3DUrlObject.h" 00006 #include "X3D_X3DBoundedObject.h" 00007 00008 namespace X3DTK { 00009 namespace X3D { 00010 00019 class Inline : public X3DChildNode, public X3DBoundedObject 00020 { 00021 public: 00023 Inline(); 00024 00026 void setLoad(const SFBool &load); 00028 void setUrl(const MFString &url); 00029 00031 inline const SFBool &getLoad() const {return _load;}; 00033 inline const MFString &getUrl() const {return _url;}; 00034 00035 private: 00037 MFString _url; 00039 SFBool _load; 00040 }; 00041 00042 } 00043 } 00044 00045 #endif