Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
IGhostLayerMng.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2026 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/* IGhostLayerMng.h (C) 2000-2025 */
9/* */
10/* Interface of the mesh ghost layer manager. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IGHOSTLAYERMNG_H
13#define ARCANE_CORE_IGHOSTLAYERMNG_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
33{
34 public:
35
37 virtual ~IGhostLayerMng() = default;
38
39 public:
40
42 virtual void setNbGhostLayer(Integer n) = 0;
43
45 virtual Integer nbGhostLayer() const = 0;
46
53 virtual void setBuilderVersion(Integer n) = 0;
54
56 virtual Integer builderVersion() const = 0;
57};
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62} // End namespace Arcane
63
64/*---------------------------------------------------------------------------*/
65/*---------------------------------------------------------------------------*/
66
67#endif
Declarations of Arcane's general types.
virtual void setBuilderVersion(Integer n)=0
Sets the version of the ghost cell builder. For now (version 3.3), the possible values are 2,...
virtual Integer nbGhostLayer() const =0
Number of ghost layers.
virtual Integer builderVersion() const =0
Ghost cell builder version.
virtual void setNbGhostLayer(Integer n)=0
Sets the number of ghost layers.
virtual ~IGhostLayerMng()=default
Releases resources.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
Int32 Integer
Type representing an integer.