00001 00002 00003 00005 00006 00011 00016 00021 // X3DFileValidator.h // 00023 00024 #ifndef X3DFILEVALIDATOR_H 00025 #define X3DFILEVALIDATOR_H 00026 00027 #include "X3DOnePassProcessor.h" 00028 00029 namespace X3DTK { 00030 namespace X3D { 00031 00033 00034 class X3DFileValidator : public X3DOnePassProcessor 00035 { 00036 public: 00038 X3DFileValidator(); 00040 virtual ~X3DFileValidator() = 0; 00041 00042 virtual bool validate(SFNode N) const; 00043 }; 00044 00045 } 00046 } 00047 00048 #endif