Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
impl/internal/MeshFactoryMng.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/* MeshFactoryMng.h (C) 2000-2020 */
9/* */
10/* Gestionnaire de fabriques de maillages. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IMPL_INTERNAL_MESHFACTORYMNG_H
13#define ARCANE_IMPL_INTERNAL_MESHFACTORYMNG_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/IMeshFactoryMng.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24class MeshMng;
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29class ARCANE_IMPL_EXPORT MeshFactoryMng
30: public IMeshFactoryMng
31{
32 public:
33
35
36 public:
37
38 IMeshMng* meshMng() const override;
39 IPrimaryMesh* createMesh(const MeshBuildInfo& build_info) override;
40
41 private:
42
43 IApplication* m_application;
44 MeshMng* m_mesh_mng;
45
46 private:
47
48 IPrimaryMesh* _createMesh(const MeshBuildInfo& build_info);
49 IPrimaryMesh* _createSubMesh(const MeshBuildInfo& build_info);
50 void _checkValidBuildInfo(const MeshBuildInfo& build_info);
51};
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56} // End namespace Arcane
57
58/*---------------------------------------------------------------------------*/
59/*---------------------------------------------------------------------------*/
60
61#endif
Interface de l'application.
Interface du gestionnaire de fabriques de maillages.
Interface du gestionnaire des maillages.
Definition IMeshMng.h:40
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Paramètres nécessaires à la construction d'un maillage.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-