b59906d5e169e202ee1fb76867b8459e787a376f
[senf.git] / PPI / detail / EventBinding.cti
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief EventBinding inline template implementation */
25
26 //#include "EventBinding.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::ppi::detail::EventBindingHelper<EventType,Self>
35
36 template <class EventType, class Self>
37 prefix_ void
38 senf::ppi::detail::EventBindingHelper<EventType,Self>::callback(EventArg event,
39                                                                 ClockService::clock_type time)
40 {
41     self().eventTime(time);
42     self().callback_(event);
43 }
44
45 template <class EventType, class Self>
46 prefix_ void senf::ppi::detail::EventBindingHelper<EventType,Self>::callback(EventArg event)
47 {
48     callback(event, ClockService::now());
49 }
50
51 ////////////////////////////////////////
52 // private members
53
54 template <class EventType, class Self>
55 prefix_ Self & senf::ppi::detail::EventBindingHelper<EventType,Self>::self()
56 {
57     return * static_cast<Self*>(this);
58 }
59
60 ///////////////////////////////////////////////////////////////////////////
61 // senf::ppi::detail::EventBindingHelper<void,Self>
62
63 template <class Self>
64 prefix_ void
65 senf::ppi::detail::EventBindingHelper<void,Self>::callback(ClockService::clock_type time)
66 {
67     self().eventTime(time);
68     self().callback_();
69 }
70
71 template <class Self>
72 prefix_ void senf::ppi::detail::EventBindingHelper<void,Self>::callback()
73 {
74     callback(ClockService::now());
75 }
76
77 ////////////////////////////////////////
78 // private members
79
80 template <class Self>
81 prefix_ Self & senf::ppi::detail::EventBindingHelper<void,Self>::self()
82 {
83     return * static_cast<Self*>(this);
84 }
85
86 ///////////////////////////////////////////////////////////////////////////
87 // senf::ppi::detail::EventBinding<EvImpl>
88
89 template <class EventType>
90 prefix_ senf::ppi::detail::EventBinding<EventType>::EventBinding(EventManager & manager,
91                                                                  module::Module & module,
92                                                                  Callback callback,
93                                                                  EventDescriptor & descriptor)
94     : EventBindingBase(manager, module, descriptor), callback_(callback)
95 {}
96
97 ///////////////////////////////cti.e///////////////////////////////////////
98 #undef prefix_
99
100 \f
101 // Local Variables:
102 // mode: c++
103 // fill-column: 100
104 // comment-column: 40
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u ../test"
109 // End: