]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/regionStructUR.h
DFCH: ManualPaint + imageUndoRedo: Undo/Redo functionality its now working =) =)
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / regionStructUR.h
1 /*!
2  * @file        regionStructUR.h
3  * @brief       This file contains the RegionStructUR struct.
4  * @author      Info-Dev
5  * @author      Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
6  * @date        2011-11-15
7  */
8
9 #ifndef REGIONSTRUCT_H_
10 #define REGIONSTRUCT_H_
11
12 /*! @class RegionStructUR reegionStructUR.h "managerUR.cxx"
13  *      @brief This class manages the Undo/Redo -- Abstract Class.
14  *      @details This class allows the communication between others libraries who wants to use it.
15  */
16 struct RegionStructUR {
17         int minX; //!< This is the minimum X
18         int maxX; //!< This is the Maximum X
19         int minY; //!< This is the minimum Y
20         int maxY; //!< This is the Maximum Y
21         int minZ; //!< This is the minimum Z
22         int maxZ; //!< This is the Maximum Z
23 };
24
25 #endif /* REGIONSTRUCT_H_ */