X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FimageUndoRedo%2FregionStructUR.h;h=4373a6bd053b3f324b2ad9bba0560b4a5de719fa;hb=f050938d3947f6b785289da6d58f8fec2da57421;hp=7cd244b42e01ed1c53a76fc7c4d33a233723d027;hpb=8185e042f64574ca43bba733ec2158a2aa994220;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/regionStructUR.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/regionStructUR.h index 7cd244b..4373a6b 100755 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/regionStructUR.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/regionStructUR.h @@ -1,23 +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_ -#include - -struct RegionStructUR{ - int minX; - int maxX; - int minY; - int maxY; - int minZ; - int maxZ; +/*! @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_ */