00001 00002 // X3DGLCreator.h // 00004 00005 #ifndef X3DGLCREATOR_H 00006 #define X3DGLCREATOR_H 00007 00008 #include "X3DOnePassProcessor.h" 00009 #include "X3DNode.h" 00010 00011 namespace X3DTK { 00012 00013 class X3DGLNode; 00014 00016 00017 class X3DGLCreator : public X3DOnePassProcessor 00018 { 00019 public: 00021 X3DGLCreator(); 00023 virtual ~X3DGLCreator() = 0; 00024 00026 virtual X3DGLNode *create(X3DNode *N) = 0; 00027 }; 00028 00029 } 00030 00031 #endif