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 00021 class DFSGraphTraversal : public GraphTraversal 00022 { 00023 public: 00025 DFSGraphTraversal(); 00027 virtual ~DFSGraphTraversal(); 00028 }; 00029 00030 } 00031 00032 #endif