Arcane  4.2.1.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
StandaloneSubDomain.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/* StandaloneSubDomain.h (C) 2000-2026 */
9/* */
10/* Implémentation autonome d'un sous-domaine. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_LAUNCHER_STANDALONESUBDOMAIN_H
13#define ARCANE_LAUNCHER_STANDALONESUBDOMAIN_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/launcher/LauncherGlobal.h"
18
19#include "arcane/utils/Ref.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
41class ARCANE_LAUNCHER_EXPORT StandaloneSubDomain
42{
43 friend class ArcaneLauncher;
44 class Impl;
45
46 public:
47
50
51 public:
52
55
58
59 private:
60
61 Ref<Impl> m_p;
62
63 private:
64
65 void _checkIsInitialized();
66
67 private:
68
69 // Pour ArcaneLauncher.
70 void _initUniqueInstance(const String& case_file_name, Span<const std::byte> file_content);
71 bool _isValid();
72 static void _notifyRemoveStandaloneSubDomain();
73};
74
75/*---------------------------------------------------------------------------*/
76/*---------------------------------------------------------------------------*/
77
78} // End namespace Arcane
79
80/*---------------------------------------------------------------------------*/
81/*---------------------------------------------------------------------------*/
82
83#endif
Déclarations des types généraux de Arcane.
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Interface du gestionnaire de traces.
Référence à une instance.
Vue d'un tableau d'éléments de type T.
Definition Span.h:633
ITraceMng * traceMng()
Gestionnaire de trace associé.
StandaloneSubDomain()
Constructeur non initialisé.
ISubDomain * subDomain()
Sous-domaine.
Chaîne de caractères unicode.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --