Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ExpressionImpl.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/* ExpressionImpl.h (C) 2000-2014 */
9/* */
10/* Implémentation d'une expression. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_EXPR_EXPRESSIONIMPL_H
13#define ARCANE_EXPR_EXPRESSIONIMPL_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17
19
20#include "arcane/expr/IExpressionImpl.h"
21#include "arcane/expr/Expression.h"
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26ARCANE_BEGIN_NAMESPACE
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31class OperatorMng;
32
33/*---------------------------------------------------------------------------*/
34/*---------------------------------------------------------------------------*/
38class ARCANE_EXPR_EXPORT ExpressionImpl
39: public IExpressionImpl
40{
41 public:
43
44 public:
45
46 virtual void addRef();
47 virtual void removeRef();
48 virtual void setTrace(bool v){ m_do_trace = v; }
49 virtual void dumpIf(IExpressionImpl* test_expr,Array<Expression>& exprs);
50
51 protected:
52
53 OperatorMng* m_op_mng;
54 bool isTraceMode() const { return m_do_trace; }
55
56 private:
57
59 bool m_do_trace;
60};
61
62/*---------------------------------------------------------------------------*/
63/*---------------------------------------------------------------------------*/
64
65ARCANE_END_NAMESPACE
66
67/*---------------------------------------------------------------------------*/
68/*---------------------------------------------------------------------------*/
69
70#endif
Fichier de configuration d'Arcane.
Classe de base de l'implémentation d'une expression.
Integer m_nb_reference
Nombre de références.
Interface pour les différentes implémentations d'une expression.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Stocke tous les types d'operateur possibles sur les expressions.
Definition OperatorMng.h:40