Doxyfile.in upgrade

This commit is contained in:
Andrey
2022-03-15 15:10:59 +03:00
parent 7d83c6fe19
commit e4aec3f95e
6 changed files with 215 additions and 143 deletions

View File

@@ -1,4 +1,6 @@
/*! \file picontainers.h
/*! \addtogroup Containers
* \{
* \file picontainers.h
* \~\brief
* \~english Base macros for generic containers
* \~russian Базовые макросы для контейнеров
@@ -9,7 +11,7 @@
* \~russian
* Иван Пелипенко peri4ko@yandex.ru;
* Андрей Бычков work.a.b@yandex.ru;
*/
* \~\} */
/*
PIP - Platform Independent Primitives
Base macros for generic containers
@@ -143,5 +145,4 @@ template <typename C> _PIReverseWrapper<C> PIReverseWrap(const C & c) {return _P
#define piForeachRC(i, c) for(const i : PIReverseWrap(c))
#define piForeachCR piForeachRC
#endif // PICONTAINERS_H

View File

@@ -16,7 +16,16 @@
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \defgroup Containers
* \~\brief
* \~english This module contains various standart containers realization.
* This includes
* \~russian Модуль содержит основные классы контейнеров.
* В него входят
* \~ \a PIVector, \a PIDeque, \a PIMap, \a PISet,
* \a PIStack, \a PIQueue, \a PIVector2D.
*
*/
#ifndef PICONTAINERSMODULE_H
#define PICONTAINERSMODULE_H