00001 00002 // X3D_X3DFileValidator.h // 00004 00005 #ifndef X3DFILEVALIDATOR_H 00006 #define X3DFILEVALIDATOR_H 00007 00008 #include "X3D_X3DNode.h" 00009 #include "X3D_SceneGraphTypes.h" 00010 #include "X3DOnePassProcessor.h" 00011 00012 namespace X3DTK { 00013 namespace X3D { 00014 00016 00017 class X3DFileValidator : public X3DOnePassProcessor 00018 { 00019 public: 00021 X3DFileValidator(); 00023 virtual ~X3DFileValidator() = 0; 00024 00025 virtual bool validate(SFNode N) const; 00026 }; 00027 00028 } 00029 } 00030 00031 #endif