Arcane  v4.1.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ExecutionContext.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/* ExecutionContext.h (C) 2000-2026 */
9/* */
10/* Execution context for linear solver operations. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13#ifndef ARCCORE_ALINA_EXECUTIONCONTEXT_H
14#define ARCCORE_ALINA_EXECUTIONCONTEXT_H
15/*---------------------------------------------------------------------------*/
16/*---------------------------------------------------------------------------*/
17
18#include "arccore/alina/AlinaGlobal.h"
19
20#include "arccore/base/Ref.h"
21#include "arccore/message_passing/IMessagePassingMng.h"
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26namespace Arcane::Alina
27{
28
29/*---------------------------------------------------------------------------*/
30/*---------------------------------------------------------------------------*/
31
32class ARCCORE_ALINA_EXPORT ExecutionContext
33{
34 public:
35
36 Ref<IMessagePassingMng> m_message_passing_mng;
37};
38
39/*---------------------------------------------------------------------------*/
40/*---------------------------------------------------------------------------*/
41
42} // namespace Arcane::Alina
43
44/*---------------------------------------------------------------------------*/
45/*---------------------------------------------------------------------------*/
46
47#endif
Gestion des références à une classe C++.
Référence à une instance.