Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
NameComparer.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/* NameComparer.h (C) 2000-2006 */
9/* */
10/* Classe utilitaire pour la destruction des objets alloués par new. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_NAMECOMPARER_H
13#define ARCANE_UTILS_NAMECOMPARER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19#include "arcane/utils/String.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24ARCANE_BEGIN_NAMESPACE
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
40{
41 public:
42 NameComparer(const String& s)
43 : m_name(s) {}
44 public:
45 template<typename U> inline bool
46 operator()(const U* ptr) const
47 {
48 return ptr->name() == m_name;
49 }
50 private:
51 String m_name;
52};
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57ARCANE_END_NAMESPACE
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62#endif
Fichier de configuration d'Arcane.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Classe utilitaire pour comparer le nom d'une instance.
Chaîne de caractères unicode.