OpenMW
apps/opencs/model/tools/regioncheck.hpp
Go to the documentation of this file.
00001 #ifndef CSM_TOOLS_REGIONCHECK_H
00002 #define CSM_TOOLS_REGIONCHECK_H
00003 
00004 #include <components/esm/loadregn.hpp>
00005 
00006 #include "../world/idcollection.hpp"
00007 
00008 #include "../doc/stage.hpp"
00009 
00010 namespace CSMTools
00011 {
00013     class RegionCheckStage : public CSMDoc::Stage
00014     {
00015             const CSMWorld::IdCollection<ESM::Region>& mRegions;
00016 
00017         public:
00018 
00019             RegionCheckStage (const CSMWorld::IdCollection<ESM::Region>& regions);
00020 
00021             virtual int setup();
00023 
00024             virtual void perform (int stage, std::vector<std::string>& messages);
00026     };
00027 }
00028 
00029 #endif