Arcane  v3.14.10.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
MeshMaterialVariableFactoryRegisterer.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* MeshMaterialVariableFactoryRegisterer.h (C) 2000-2022 */
9/* */
10/* Singleton permettant d'enregister une fabrique de variable matériaux. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_MATERIALS_MESHMATERIALVARIABLEFACTORYREGISTERER_H
13#define ARCANE_MATERIALS_MESHMATERIALVARIABLEFACTORYREGISTERER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/GenericRegisterer.h"
18
19#include "arcane/core/materials/MaterialVariableTypeInfo.h"
20
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26namespace Arcane::Materials
27{
28
29/*---------------------------------------------------------------------------*/
30/*---------------------------------------------------------------------------*/
31/*!
32 * \internal
33 * \brief Enregistreur d'une fabrique de variables matériaux..
34 */
35class ARCANE_MATERIALS_EXPORT MeshMaterialVariableFactoryRegisterer
36: public GenericRegisterer<MeshMaterialVariableFactoryRegisterer>
37{
38 public:
39
41 static BaseInfo& registererInfo();
42
43 using MeshMaterialVariableFactoryFunc = MeshMaterialVariableFactoryVariableRefCreateFunc;
44
45 public:
46
47 //! Crée un enregistreur pour une MeshMaterialVariableFactory pour le type \a var_type_info et pour fonction de création \a func
48 MeshMaterialVariableFactoryRegisterer(MeshMaterialVariableFactoryFunc func,
49 const MaterialVariableTypeInfo& var_type_info)
50 : m_function(func)
51 , m_variable_type_info(var_type_info)
52 {}
53
54 public:
55
56 //! Créé une fabrique pour ce type de variable.
57 Ref<IMeshMaterialVariableFactory> createFactory();
58
59 //! Informations sur le type de la variable
60 const MaterialVariableTypeInfo& variableTypeInfo() const { return m_variable_type_info; }
61
62 private:
63
64 //! Fonction de création du IMeshMaterialVariableFactoryFactory
65 MeshMaterialVariableFactoryFunc m_function;
66
67 //! Informations sur le type de la variable
68 MaterialVariableTypeInfo m_variable_type_info;
69
70 private:
71
72 static BaseInfo m_global_infos;
73};
74
75/*---------------------------------------------------------------------------*/
76/*---------------------------------------------------------------------------*/
77
78} // End namespace Arcane
79
80/*---------------------------------------------------------------------------*/
81/*---------------------------------------------------------------------------*/
82
83#endif
84
Classe template pour gérer une liste globale permettant d'enregistrer des fabriques.
Informations caractérisant le type d'une variable matériau.
MeshMaterialVariableFactoryRegisterer(MeshMaterialVariableFactoryFunc func, const MaterialVariableTypeInfo &var_type_info)
Crée un enregistreur pour une MeshMaterialVariableFactory pour le type var_type_info et pour fonction...
const MaterialVariableTypeInfo & variableTypeInfo() const
Informations sur le type de la variable.
Active toujours les traces dans les parties Arcane concernant les matériaux.