rename doc macros

This commit is contained in:
2021-08-04 16:31:32 +03:00
parent 0c7ce272e6
commit 25def958a1
140 changed files with 963 additions and 983 deletions

View File

@@ -1,5 +1,5 @@
/*! \file picontainers.h
* \brief Base for generic containers
/*! @file picontainers.h
* @brief Base for generic containers
*
* This file declare all containers and useful macros
* to use them
@@ -58,7 +58,7 @@
#ifdef DOXYGEN
/*!\brief Macro for iterate any container
/*!@brief Macro for iterate any container
* \details Use this macros instead of standard "for"
* to get read/write access to each element of container.
* Pass direction is direct \n
@@ -66,7 +66,7 @@
*/
# define piForeach(i,c)
/*!\brief Macro for iterate any container only for read
/*!@brief Macro for iterate any container only for read
* \details Use this macros instead of standard "for"
* to get read access to each element of container.
* Pass direction is direct \n
@@ -74,7 +74,7 @@
*/
# define piForeachC(i,c)
/*!\brief Macro for iterate any container with reverse direction
/*!@brief Macro for iterate any container with reverse direction
* \details Use this macros instead of standard "for"
* to get read/write access to each element of container.
* Pass direction is reverse \n
@@ -82,7 +82,7 @@
*/
# define piForeachR(i,c)
/*!\brief Macro for iterate any container only for read with reverse direction
/*!@brief Macro for iterate any container only for read with reverse direction
* \details Use this macros instead of standard "for"
* to get read access to each element of container.
* Pass direction is reverse \n