00001 00002 // FileValidatorGlobalVariables.h // 00004 00005 #ifndef FILEVALIDATORGLOBALVARIABLES_H 00006 #define FILEVALIDATORGLOBALVARIABLES_H 00007 00008 #include "GlobalVariables.h" 00009 #include "Bbox.h" 00010 00011 #include <list> 00012 00013 namespace X3DTK { 00014 namespace X3D { 00015 00017 00018 class FileValidatorGlobalVariables : public GlobalVariables 00019 { 00020 public: 00022 FileValidatorGlobalVariables(); 00024 virtual ~FileValidatorGlobalVariables(); 00025 00027 void setValidity(bool value); 00028 00029 inline bool getValidity() const {return _validity;}; 00030 00031 private: 00032 bool _validity; 00033 }; 00034 00035 } 00036 } 00037 00038 #endif