00001 00002 // GraphTester.h // 00004 00005 #ifndef GRAPHTESTER_H 00006 #define GRAPHTESTER_H 00007 00008 #include "X3DOnePassProcessor.h" 00009 #include "GraphTesterStateVariables.h" 00010 00011 namespace X3DTK { 00012 00014 00015 class GraphTester : public X3DOnePassProcessor 00016 { 00017 public: 00019 GraphTester(); 00021 virtual ~GraphTester(); 00022 00024 virtual void test(SFAbstractNode N) const; 00025 00026 protected: 00027 GraphTesterStateVariables *stateVariables; 00028 }; 00029 00030 } 00031 00032 #endif