Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
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-2023 */
9/* */
10/* Standalone implementation of a sub-domain. */
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 // For ArcaneLauncher.
70 void _initUniqueInstance(const String& case_file_name);
71 bool _isValid();
72 static void _notifyRemoveStandaloneSubDomain();
73};
74
75/*---------------------------------------------------------------------------*/
76/*---------------------------------------------------------------------------*/
77
78} // End namespace Arcane
79
80/*---------------------------------------------------------------------------*/
81/*---------------------------------------------------------------------------*/
82
83#endif
Declarations of Arcane's general types.
Interface of the subdomain manager.
Definition ISubDomain.h:75
Reference to an instance.
ITraceMng * traceMng()
Associated trace manager.
StandaloneSubDomain()
Uninitialized constructor.
ISubDomain * subDomain()
Sub-domain.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --