14#include "arcane/VariableCollection.h"
38VariableCollection(
const Enumerator& rhs)
41 _values().copy(rhs.m_collection);
47void VariableCollection::
48sortByName(
bool is_ascendent)
50 Array<IVariable*>& v = _values();
52 return v1->
fullName() < v2->fullName();
56 std::sort(v.begin(),v.end(),sort_func);
58 std::sort(v.rbegin(),v.rend(),sort_func);
67VariableCollectionEnumerator::
70, m_collection(col._values())
72 m_count = m_collection.size();
Interface d'une variable.
virtual String fullName() const =0
Nom complet de la variable (avec le préfixe de la famille)
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-