14#include "arcane/utils/StringBuilder.h"
16#include "arcane/VariableMetaData.h"
29 const String& item_family_name,
const String& item_group_name,
31: m_base_name(base_name)
32, m_mesh_name(mesh_name)
33, m_item_family_name(item_family_name)
34, m_item_group_name(item_group_name)
36, m_is_partial(is_partial)
44void VariableMetaData::
48 if (!m_mesh_name.
null()){
49 full_name_b += m_mesh_name;
52 if (!m_item_family_name.
null()){
53 full_name_b += m_item_family_name;
56 full_name_b += m_base_name;
57 m_full_name = full_name_b.
toString();
Constructeur de chaîne de caractère unicode.
String toString() const
Retourne la chaîne de caractères construite.
Chaîne de caractères unicode.
bool null() const
Retourne true si la chaîne est nulle.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-