Arcane  4.1.12.0
User documentation
Loading...
Searching...
No Matches
IIndexedIncrementalItemConnectivity.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/* IIndexedIncrementalItemConnectivity.h (C) 2000-2025 */
9/* */
10/* Incremental connectivity interface for entities. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IINDEXEDINCREMENTALITEMCONNECTIVITY_H
13#define ARCANE_CORE_IINDEXEDINCREMENTALITEMCONNECTIVITY_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/ArrayView.h"
18
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31/*!
32 * \brief Interface to manage incremental connectivity.
33 *
34 * A connectivity links two families, a source (sourceFamily()) and
35 * a target (targetFamily()).
36 */
38{
39 public:
40
41 virtual ~IIndexedIncrementalItemConnectivity() = default;
42
43 public:
44
45 //! Interface of the associated connectivity
47
48 //! View of the connectivity.
50};
51
52/*---------------------------------------------------------------------------*/
53/*---------------------------------------------------------------------------*/
54
55} // End namespace Arcane
56
57/*---------------------------------------------------------------------------*/
58/*---------------------------------------------------------------------------*/
59
60#endif
Declarations of types on entities.
Interface for managing an incremental connectivity.
Interface to manage incremental connectivity.
virtual IndexedItemConnectivityViewBase view() const =0
View of the connectivity.
virtual IIncrementalItemConnectivity * connectivity()=0
Interface of the associated connectivity.
Base class for a view on unstructured connectivity.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --