Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ParameterList.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* ParameterList.h (C) 2000-2025 */
9/* */
10/* Liste de paramètres. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_PARAMETERLIST_H
13#define ARCANE_UTILS_PARAMETERLIST_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/ParameterCaseOption.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
35class ARCANE_UTILS_EXPORT ParameterList
36{
37 private:
38
39 class Impl;
40
41 public:
42
46 ParameterList(const ParameterList& rhs);
48
49 public:
50
59 String getParameterOrNull(const String& param_name) const;
60
81 bool addParameterLine(const String& line);
82
89 void fillParameters(StringList& param_names,StringList& values) const;
90
100
101 private:
102
104};
105
106/*---------------------------------------------------------------------------*/
107/*---------------------------------------------------------------------------*/
108
109} // End namespace Arcane
110
111/*---------------------------------------------------------------------------*/
112/*---------------------------------------------------------------------------*/
113
114#endif
Déclarations des types utilisés dans Arcane.
Classe représentant l'ensemble des paramètres pouvant modifier les options du jeu de données.
void fillParameters(StringList &param_names, StringList &values) const
Récupère la liste des paramètres et leur valeur.
bool addParameterLine(const String &line)
Analyse la ligne line.
String getParameterOrNull(const String &param_name) const
Récupère le paramètre de nom param_name.
ParameterCaseOption getParameterCaseOption(const String &language) const
Méthode permettant de récupérer un objet de type ParameterCaseOption.
Impl * m_p
Implémentation.
ParameterList()
Implémentation.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
List< String > StringList
Tableau de chaînes de caractères unicode.
Definition UtilsTypes.h:596