00001 #ifndef X3DTK_DFSGRAPHTRAVERSAL_H 00002 #define X3DTK_DFSGRAPHTRAVERSAL_H 00003 00004 #include "StateVariables.h" 00005 #include "X3DTypes.h" 00006 #include "GraphTraversal.h" 00007 00008 #include <list> 00009 #include <typeinfo> 00010 #include <iostream> 00011 00012 namespace X3DTK { 00013 00022 class DFSGraphTraversal : public GraphTraversal 00023 { 00024 public: 00026 DFSGraphTraversal(); 00028 virtual ~DFSGraphTraversal(); 00029 }; 00030 00031 } 00032 00033 #endif