00001 00002 // FileValidatorGeometry3DVisitor.h // 00004 00005 #ifndef FILEVALIDATORGEOMETRY3DVISITOR_H 00006 #define FILEVALIDATORGEOMETRY3DVISITOR_H 00007 00008 #include "Geometry3DVisitor.h" 00009 #include "FileValidatorGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 namespace X3D { 00013 00014 class IndexedFaceSet; 00015 00017 00018 class FileValidatorGeometry3DVisitor : public Geometry3DVisitor 00019 { 00020 public: 00022 FileValidatorGeometry3DVisitor(); 00024 virtual ~FileValidatorGeometry3DVisitor(); 00025 00027 virtual void enterIndexedFaceSet(IndexedFaceSet *I) const; 00028 00029 protected: 00030 FileValidatorGlobalVariables *globalVariables; 00031 }; 00032 00033 } 00034 } 00035 00036 #endif