00001 #ifndef X3DTK_NODEFACTORY_H 00002 #define X3DTK_NODEFACTORY_H 00003 00004 namespace X3DTK { 00005 00006 template<class T> 00007 class NodeFactory 00008 { 00009 public: 00010 static T *create(); 00011 }; 00012 00013 } 00014 00015 #include "NodeFactory.inl" 00016 00017 #endif