00001 #ifndef X3DTK_X3D_IMAGETEXTURE_H 00002 #define X3DTK_X3D_IMAGETEXTURE_H 00003 00004 #include "X3D_X3DTexture2DNode.h" 00005 00006 namespace X3DTK { 00007 namespace X3D { 00008 00017 class ImageTexture : public X3DTexture2DNode 00018 { 00019 public: 00021 ImageTexture(); 00023 virtual ~ImageTexture(); 00024 00026 void setUrl(const MFString &url); 00028 inline const MFString &getUrl() const {return _url;}; 00029 00030 private: 00032 MFString _url; 00033 }; 00034 00035 } 00036 } 00037 00038 #endif