Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
IItemFamilyInternal.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/* IItemFamilyInternal.h (C) 2000-2025 */
9/* */
10/* Internal Arcane part of IItemFamily. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_INTERNAL_IITEMFAMILYINTERNAL_H
13#define ARCANE_CORE_INTERNAL_IITEMFAMILYINTERNAL_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
32class ARCANE_CORE_EXPORT IItemFamilyInternal
33{
34 public:
35
36 virtual ~IItemFamilyInternal() = default;
37
38 public:
39
42
45
48
57 virtual void endAllocate() = 0;
58
67 virtual void notifyEndUpdateFromMesh() = 0;
68
75 virtual void addVariable(IVariable* var) = 0;
76
83 virtual void removeVariable(IVariable* var) = 0;
84
88 virtual void resizeVariables(bool force_resize) = 0;
89
90 virtual void addSourceConnectivity(IIncrementalItemSourceConnectivity* connectivity) = 0;
91 virtual void addTargetConnectivity(IIncrementalItemTargetConnectivity* connectivity) = 0;
92};
93
94/*---------------------------------------------------------------------------*/
95/*---------------------------------------------------------------------------*/
96
97} // namespace Arcane
98
99/*---------------------------------------------------------------------------*/
100/*---------------------------------------------------------------------------*/
101
102#endif
Declarations of Arcane's general types.
Interface for the source of an incremental connectivity.
Interface for the target of an incremental connectivity.
Internal part of IItemFamily.
virtual void endAllocate()=0
Indicates the end of allocation.
virtual void resizeVariables(bool force_resize)=0
Resizes the variables of this family.
virtual void addVariable(IVariable *var)=0
Adds a variable to this family.
virtual ItemSharedInfo * commonItemSharedInfo()=0
Instance of ItemSharedInfo for the family entities.
virtual IItemFamilyTopologyModifier * topologyModifier()=0
Topology modifier interface.
virtual ItemInternalConnectivityList * unstructuredItemInternalConnectivityList()=0
Information on unstructured connectivities.
virtual void removeVariable(IVariable *var)=0
Removes a variable from this family.
virtual void notifyEndUpdateFromMesh()=0
Indicates the end of modification by the mesh.
Interface for modifying the topology of entities within a family.
Interface of a variable.
Definition IVariable.h:40
Connectivity information, for an entity family, allowing transition between old and new connectivity ...
Internal shared structure of a mesh entity.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --