Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ITimeLoopService.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/* ITimeLoopService.cc (C) 2000-2012 */
9/* */
10/* Interface d'un service opérant lors de la boucle en temps. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13#ifndef ARCANE_ITIMELOOPSERVICE_H
14#define ARCANE_ITIMELOOPSERVICE_H
15/*---------------------------------------------------------------------------*/
16/*---------------------------------------------------------------------------*/
17
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23ARCANE_BEGIN_NAMESPACE
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
38{
39 public:
40
41 virtual ~ITimeLoopService() {}
42
43 public:
44
45 virtual void onTimeLoopBeginLoop() =0;
46 virtual void onTimeLoopEndLoop() =0;
47 virtual void onTimeLoopStartInit() =0;
48 virtual void onTimeLoopContinueInit() =0;
49 virtual void onTimeLoopExit() =0;
50 virtual void onTimeLoopMeshChanged() =0;
51 virtual void onTimeLoopRestore() =0;
52};
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57ARCANE_END_NAMESPACE
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62#endif
Fichier de configuration d'Arcane.
Interface d'un service opérant lors de la boucle en temps.