00001 #include "GLShape.h" 00002 #include "Shape.h" 00003 00004 using namespace X3DTK; 00005 00006 GLShape::GLShape() 00007 : X3DGLShapeNode() 00008 { 00009 defineTagName("GLShape", "GLShape"); 00010 } 00011 00012 GLShape::GLShape(const GLShape &S) 00013 : X3DGLShapeNode(S) 00014 { 00015 defineTagName("GLShape", "GLShape"); 00016 } 00017 00018 SFNode GLShape::clone() const 00019 { 00020 return new GLShape(*this); 00021 } 00022 00023 GLShape::~GLShape() 00024 { 00025 }