- C3d aggiornamento librerie ( 117998).
This commit is contained in:
Daniele Bariletti
2024-07-03 10:27:12 +02:00
parent 63aa16ad57
commit edc7499572
50 changed files with 53 additions and 3132 deletions
+3 -3
View File
@@ -122,7 +122,7 @@ public:
\param[in] forcedAssign - \ru Если флаг равен false, то обобщенный атрибут не будет добавлен, если в настройках его поведения есть запрет на размножение.
\en If the flag is false, then the generic attribute will not be added if its behavior settings prohibit replication. \~
*/
void AttributesAssign( const MbAttributeContainer & src, bool forcedAssign = true );
void AttributesAssign( const MbAttributeContainer & src, bool forcedAssign = false );
/// \ru Выдать количество объектов. \en Get the number of objects.
size_t AttributesCount() const { return attributes.Count(); }
/// \ru Удалить все атрибуты из контейнера. \en Delete all attributes from container.
@@ -145,7 +145,7 @@ public:
\return \ru Возвращает указатель на добавленный атрибут или нулевой указатель.
\en Returns a pointer to the added attribute or null pointer. \~
*/
MbAttribute * AddAttribute( MbAttribute * attr, bool checkSame = true, bool forcedAssign = true );
MbAttribute * AddAttribute( MbAttribute * attr, bool checkSame = true, bool forcedAssign = false );
/** \brief \ru Добавить атрибут в контейнер (добавляет копию атрибута, если его можно добавить).
\en Add attribute in container (adds a copy of the attribute if it can be added). \~
@@ -162,7 +162,7 @@ public:
\return \ru Возвращает указатель на добавленный атрибут или нулевой указатель.
\en Returns a pointer to the added attribute or null pointer. \~
*/
MbAttribute * AddAttribute( const MbAttribute & attr, bool checkSame = true, bool forcedAssign = true );
MbAttribute * AddAttribute( const MbAttribute & attr, bool checkSame = true, bool forcedAssign = false );
/** \brief \ru Выдать атрибуты заданного типа или семейства.
\en Get attributes of a given type or family. \~