Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ObserverPool.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/* ObserverPool.h (C) 2000-2006 */
9/* */
10/* Liste d'observateurs. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_OBSERVERPOOL_H
13#define ARCANE_OBSERVERPOOL_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/List.h"
18
19#include "arcane/IObservable.h"
20#include "arcane/Observer.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25ARCANE_BEGIN_NAMESPACE
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
30class IObservable;
31
32/*---------------------------------------------------------------------------*/
33/*---------------------------------------------------------------------------*/
40class ARCANE_CORE_EXPORT ObserverPool
41{
42 public:
43
45
46 public:
47
51
52 public:
53
55 template<class T> inline void
57 {
59 oba->attachObserver(obs);
60 m_observers.add(obs);
61 }
62
64 template<class T> inline void
66 {
68 oba->attachObserver(obs);
69 m_observers.add(obs);
70 }
71
73 ObserverCollection observers() { return m_observers; }
74
76 void detachAll();
77
78 protected:
79
80 private:
81
83};
84
85/*---------------------------------------------------------------------------*/
86/*---------------------------------------------------------------------------*/
87
88ARCANE_END_NAMESPACE
89
90/*---------------------------------------------------------------------------*/
91/*---------------------------------------------------------------------------*/
92
93#endif
94
Interface d'un observable.
Interface d'un observateur.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Liste d'observateurs.
ObserverPool()
Constructeur.
void addObserver(T *obj, void(T::*func)(), IObservable *oba)
Ajoute un observateur.
void addObserver(T *obj, void(T::*func)(const IObservable &), IObservable *oba)
Ajoute un observateur.
List< IObserver * > m_observers
Liste des observateurs.
ObserverCollection observers()
Liste des observateurs.