00001 00002 00003 00005 00006 00011 00016 00021 // FileValidatorGeometry3DVisitor.h // 00023 00024 #ifndef FILEVALIDATORGEOMETRY3DVISITOR_H 00025 #define FILEVALIDATORGEOMETRY3DVISITOR_H 00026 00027 #include "Geometry3DVisitor.h" 00028 #include "FileValidatorGlobalVariables.h" 00029 00030 namespace X3DTK { 00031 namespace X3D { 00032 00033 class IndexedFaceSet; 00034 00036 00037 class FileValidatorGeometry3DVisitor : public Geometry3DVisitor 00038 { 00039 public: 00041 FileValidatorGeometry3DVisitor(); 00043 virtual ~FileValidatorGeometry3DVisitor(); 00044 00046 virtual void enterIndexedFaceSet(IndexedFaceSet *I) const; 00047 00048 protected: 00049 FileValidatorGlobalVariables *globalVariables; 00050 }; 00051 00052 } 00053 } 00054 00055 #endif