Arcane  v3.16.6.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IVariableFilter.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/* IVariableFilter.h (C) 2000-2025 */
9/* */
10/* Functor d'un filtre applicable sur des variables. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IVARIABLEFILTER_H
13#define ARCANE_CORE_IVARIABLEFILTER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
36{
37 public:
38
39 virtual ~IVariableFilter() = default;
40
46 virtual bool applyFilter(IVariable& var) = 0;
47};
48
49/*---------------------------------------------------------------------------*/
50/*---------------------------------------------------------------------------*/
51
52} // namespace Arcane
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57#endif
Fichier de configuration d'Arcane.
Functor d'un filtre applicable sur des variables.
virtual ~IVariableFilter()=default
Libère les ressources.
virtual bool applyFilter(IVariable &var)=0
Applique le filtre sur la variable var.
Interface d'une variable.
Definition IVariable.h:56
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-