Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
GlobalTimeHistoryAdder.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 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/* GlobalTimeHistoryAdder.h (C) 2000-2024 */
9/* */
10/* Classe permettant d'ajouter un historique de valeur global. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_GLOBALTIMEHISTORYADDER_H
13#define ARCANE_CORE_GLOBALTIMEHISTORYADDER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/ITimeHistoryAdder.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
54class ARCANE_CORE_EXPORT GlobalTimeHistoryAdder
55: public ITimeHistoryAdder
56{
57 public:
58
65 ~GlobalTimeHistoryAdder() override = default;
66
67 public:
68
69 void addValue(const TimeHistoryAddValueArg& thp, Real value) override;
70 void addValue(const TimeHistoryAddValueArg& thp, Int32 value) override;
71 void addValue(const TimeHistoryAddValueArg& thp, Int64 value) override;
72 void addValue(const TimeHistoryAddValueArg& thp, RealConstArrayView values) override;
73 void addValue(const TimeHistoryAddValueArg& thp, Int32ConstArrayView values) override;
74 void addValue(const TimeHistoryAddValueArg& thp, Int64ConstArrayView values) override;
75
76 private:
77
78 ITimeHistoryMng* m_thm;
79};
80
81/*---------------------------------------------------------------------------*/
82/*---------------------------------------------------------------------------*/
83
84} // End namespace Arcane
85
86/*---------------------------------------------------------------------------*/
87/*---------------------------------------------------------------------------*/
88
89#endif
Classe permettant d'ajouter une ou plusieurs valeurs à un historique de valeurs.
Interface de classe permettant d'ajouter une ou plusieurs valeurs à un historique de valeurs.
Classe gérant un historique de valeurs.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Vue constante d'un tableau de type T.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-