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(); 00025 virtual ~Inline(); 00026 00028 void setLoad(const SFBool &load); 00030 void setUrl(const MFString &url); 00031 00033 inline const SFBool &getLoad() const {return _load;}; 00035 inline const MFString &getUrl() const {return _url;}; 00036 00037 private: 00039 MFString _url; 00041 SFBool _load; 00042 }; 00043 00044 } 00045 } 00046 00047 #endif