Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ItemInternalSortFunction.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/* ItemInternalSortFunction.h (C) 2000-2008 */
9/* */
10/* Fonction de tri des entités. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_ITEMINTERNALSORTFUNCTION_H
13#define ARCANE_ITEMINTERNALSORTFUNCTION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/String.h"
18#include "arcane/IItemInternalSortFunction.h"
19
20#include <algorithm>
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25ARCANE_BEGIN_NAMESPACE
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
30/*---------------------------------------------------------------------------*/
31/*---------------------------------------------------------------------------*/
44template<typename SortFunction>
47{
48 public:
49
51 : m_name(name){}
52 virtual ~ItemInternalSortFunction() {} //<! Libère les ressources
53
54 public:
55
56 virtual const String& name() const
57 {
58 return m_name;
59 }
60
61 public:
62
67 {
68 std::sort(std::begin(items),std::end(items),SortFunction());
69 }
70
71 private:
72
73 String m_name;
74};
75
76/*---------------------------------------------------------------------------*/
77/*---------------------------------------------------------------------------*/
78
79ARCANE_END_NAMESPACE
80
81/*---------------------------------------------------------------------------*/
82/*---------------------------------------------------------------------------*/
83
84#endif
Interface d'une fonction de tri des entités.
Interface d'une fonction de tri des entités.
virtual const String & name() const
Nom de la fonction de tri.
virtual void sortItems(ItemInternalMutableArrayView items)
Trie les entités du tableau items.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Vue modifiable d'un tableau d'un type T.
Chaîne de caractères unicode.