]> Creatis software - creaMaracasVisu.git/blobdiff - 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
index a6aac622aaf5dd5be9790436136e5f184ad403aa..4373a6bd053b3f324b2ad9bba0560b4a5de719fa 100755 (executable)
@@ -1,20 +1,25 @@
-/*
- * RegionStruct.h
- *
- *  Created on: Sep 22, 2011
- *      Author: caceres
+/*!
+ * @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;
-       int maxX;
-       int minY;
-       int maxY;
-       int minZ;
-       int maxZ;
+       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_ */