00001 #ifndef X3DTK_X3D_X3DSENSORNODE_H 00002 #define X3DTK_X3D_X3DSENSORNODE_H 00003 00004 #include "X3D_X3DChildNode.h" 00005 #include "X3DFileElement.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00018 class X3DSensorNode : public virtual X3DChildNode 00019 { 00020 public: 00022 X3DSensorNode(); 00024 X3DSensorNode(const SFBool &enabled); 00026 virtual ~X3DSensorNode(); 00027 00029 void setEnabled(const SFBool &enabled); 00030 00032 const SFBool &getEnabled() const {return _enabled;}; 00033 00034 protected: 00036 X3DSensorNode(const X3DSensorNode &N); 00037 00038 private: 00039 SFBool _enabled; 00040 }; 00041 00042 } 00043 } 00044 00045 #endif