00001 00002 00003 00005 00006 00011 00016 00021 // FileValidatorGlobalVariables.h // 00023 00024 #ifndef FILEVALIDATORGLOBALVARIABLES_H 00025 #define FILEVALIDATORGLOBALVARIABLES_H 00026 00027 #include "GlobalVariables.h" 00028 #include "Bbox.h" 00029 00030 #include <list> 00031 00032 namespace X3DTK { 00033 namespace X3D { 00034 00036 00037 class FileValidatorGlobalVariables : public GlobalVariables 00038 { 00039 public: 00041 FileValidatorGlobalVariables(); 00043 virtual ~FileValidatorGlobalVariables(); 00044 00046 void setValidity(bool value); 00047 00048 inline bool getValidity() const {return _validity;}; 00049 00050 private: 00051 bool _validity; 00052 }; 00053 00054 } 00055 } 00056 00057 #endif