/*! * @file regionStructUR.h * @brief This file contains the RegionStructUR struct. * @author Info-Dev * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) * @date 2011-11-15 */ #ifndef REGIONSTRUCT_H_ #define REGIONSTRUCT_H_ /*! @class RegionStructUR reegionStructUR.h "managerUR.cxx" * @brief This class manages the Undo/Redo -- Abstract Class. * @details This class allows the communication between others libraries who wants to use it. */ struct RegionStructUR { int minX; //!< This is the minimum X int maxX; //!< This is the Maximum X int minY; //!< This is the minimum Y int maxY; //!< This is the Maximum Y int minZ; //!< This is the minimum Z int maxZ; //!< This is the Maximum Z }; #endif /* REGIONSTRUCT_H_ */