merged AI doc, some new pages

This commit is contained in:
2026-03-12 14:46:57 +03:00
parent 07ae277f9e
commit ed13838237
206 changed files with 14088 additions and 5152 deletions

View File

@@ -1,9 +1,14 @@
/*! \file piunits_class_pressure.h
* \ingroup Core
* \~\brief
* \~english Pressure units
* \~russian Единицы измерения давления
*/
//! \~\file piunits_class_pressure.h
//! \~\ingroup Units
//! \~\brief
//! \~english Pressure unit family descriptor
//! \~russian Описатель семейства единиц давления
//!
//! \~\details
//! \~english
//! Declares %PIUnits::Class::Pressure and its public type identifiers for pressure conversions.
//! \~russian
//! Объявляет %PIUnits::Class::Pressure и его публичные идентификаторы типов для преобразования давления.
/*
PIP - Platform Independent Primitives
Pressure units
@@ -28,13 +33,20 @@
#include "piunits_base.h"
//! \class PIUnits::Class::Pressure
//! \~\ingroup Units
//! \~\brief
//! \~english Descriptor of pressure units and their public type identifiers.
//! \~russian Описатель единиц давления и их публичных идентификаторов типов.
DECLARE_UNIT_CLASS_BEGIN(Pressure, 0x500)
//! \~english Supported pressure unit type identifiers.
//! \~russian Поддерживаемые идентификаторы типов единиц давления.
enum {
Pascal = typeStart,
Atmosphere,
Bar,
MillimetreOfMercury,
_LastType,
Pascal = typeStart /** \~english Pascal \~russian Паскаль */,
Atmosphere /** \~english Standard atmosphere \~russian Стандартная атмосфера */,
Bar /** \~english Bar \~russian Бар */,
MillimetreOfMercury /** \~english Millimetre of mercury \~russian Миллиметр ртутного столба */,
_LastType
};
DECLARE_UNIT_CLASS_END(Pressure)