Arcane  v4.1.4.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ArccoreApplicationBuildInfoImpl.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/* ArccoreApplicationBuildInfoImpl.h (C) 2000-2026 */
9/* */
10/* Informations pour construire une instance d'une application. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCCORE_COMMON_INTERNAL_ARCCOREAPPLICATIONBUILDINFOIMPL_H
13#define ARCCORE_COMMON_INTERNAL_ARCCOREAPPLICATIONBUILDINFOIMPL_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arccore/common/ArccoreApplicationBuildInfo.h"
18#include "arccore/common/internal/FieldProperty.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29class ARCCORE_COMMON_EXPORT ArccoreApplicationBuildInfoImpl
30{
31 public:
32
33 template <typename T> using FieldProperty = PropertyImpl::FieldProperty<T>;
34
35 ArccoreApplicationBuildInfoImpl();
36
37 public:
38
39 String getValue(const UniqueArray<String>& env_values, const String& param_name,
40 const String& default_value);
41 void addKeyValue(const String& name, const String& value);
42
43 public:
44
45 FieldProperty<StringList> m_task_implementation_services;
46 FieldProperty<StringList> m_thread_implementation_services;
47 FieldProperty<Int32> m_nb_task_thread;
48
49 private:
50
51 PropertyImpl::PropertyKeyValues m_property_key_values;
52};
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57} // End namespace Arcane
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62#endif
63
Chaîne de caractères unicode.
Vecteur 1D de données avec sémantique par valeur (style STL).
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-