00001 #ifndef INFOSHAPE_H 00002 #define INFOSHAPE_H 00003 00004 #include <X3DTK/X3D/scenegraph.h> 00005 00006 namespace X3DTK { 00007 namespace X3D { 00008 00009 class Info; 00010 00011 // InfoShape node. 00012 00013 class InfoShape : public Shape 00014 { 00015 public: 00016 InfoShape(); 00017 00018 inline Info *getInfo() const {return _info;}; 00019 00020 private: 00021 Info *_info; 00022 }; 00023 00024 } 00025 } 00026 00027 #endif