blob: 6fa0a2ef19f336660e0d5cb9aad67670218cb8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*
* DNN - Data News Network
*
* by Stephane Chatty
*
* Copyright 1993-1994
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* Reactions.
*
* $Id$
* $CurLog$
*/
#ifndef DnnReaction_H_
#define DnnReaction_H_
#ifdef __GNUG__
#pragma interface
#endif
#include "ccu/List.h"
class DnnTrigger;
class DnnEvent;
class DnnBaseReaction {
protected:
DnnBaseReaction ();
CcuListOf <DnnTrigger> Triggers;
CcuListOf <DnnTrigger> Grabbed;
public:
virtual ~DnnBaseReaction ();
void SubscribeTo (DnnTrigger&);
void UnsubscribeTo (DnnTrigger&);
void Grab (DnnTrigger&);
void Release (DnnTrigger&);
virtual void Manage (DnnEvent&);
};
typedef void (*DnnHandlingFunction) (DnnEvent&);
class DnnReaction : public DnnBaseReaction {
protected:
DnnHandlingFunction Handler;
public:
DnnReaction (DnnHandlingFunction);
~DnnReaction ();
void Manage (DnnEvent&);
};
#define SpecializedReaction(R,S) \
class R : public DnnBaseReaction { \
protected: \
S& Body; \
void (S::*React) (DnnEvent&); \
public: \
R (S& s, void (S::*sc) (DnnEvent&)) : DnnBaseReaction (), Body (s), React (sc) {} \
~R () {} \
void Manage (DnnEvent& ev) { (Body.*React) (ev); } \
};
template <class T> class DnnReactionOf : public DnnBaseReaction {
protected:
T& Object;
void (T::*Reaction) (DnnEvent&);
public:
DnnReactionOf (T& o, void (T::*r) (DnnEvent&)) : DnnBaseReaction (), Object (o), Reaction (r) {}
~DnnReactionOf () {}
void Manage (DnnEvent& ev) { (Object.*Reaction) (ev); }
};
#endif /* DnnReaction_H_ */
|