Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
utils/StringDictionary.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 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/* StringDictionary.h (C) 2000-2020 */
9/* */
10/* Dictionnaire de chaînes de caractères. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_STRINGDICTIONARY_H
13#define ARCANE_UTILS_STRINGDICTIONARY_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
36class ARCANE_UTILS_EXPORT StringDictionary
37{
38 private:
39 class Impl;
40 public:
41
47
48 public:
54 void add(const String& key,const String& value);
55
61 String remove(const String& key);
62
71 String find(const String& key,bool throw_exception=false) const;
72
74 void fill(StringList& param_names,StringList& values) const;
75
76 private:
78};
79
80/*---------------------------------------------------------------------------*/
81/*---------------------------------------------------------------------------*/
82
83} // End namespace Arcane
84
85/*---------------------------------------------------------------------------*/
86/*---------------------------------------------------------------------------*/
87
88#endif
Déclarations des types utilisés dans Arcane.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Implémentation du dictionnaire de chaîne unicode.
Dictionnaire de chaînes unicode.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-