switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / PPI / detail / EventBinding.cti
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief EventBinding inline template implementation */
30
31 //#include "EventBinding.ih"
32
33 // Custom includes
34 #include <senf/PPI/EventManager.hh>
35
36 #define prefix_ inline
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40 // senf::ppi::detail::EventBindingHelper<EventType,Self>
41
42 template <class EventType, class Self>
43 prefix_ void
44 senf::ppi::detail::EventBindingHelper<EventType,Self>::callback(EventArg event,
45                                                                 ClockService::clock_type time)
46 {
47     self().eventTime(time);
48     self().callback_(event);
49 }
50
51 template <class EventType, class Self>
52 prefix_ void senf::ppi::detail::EventBindingHelper<EventType,Self>::callback(EventArg event)
53 {
54     callback(event, self().manager().now());
55 }
56
57 //-/////////////////////////////////////////////////////////////////////////////////////////////////
58 // private members
59
60 template <class EventType, class Self>
61 prefix_ Self & senf::ppi::detail::EventBindingHelper<EventType,Self>::self()
62 {
63     return * static_cast<Self*>(this);
64 }
65
66 //-/////////////////////////////////////////////////////////////////////////////////////////////////
67 // senf::ppi::detail::EventBindingHelper<void,Self>
68
69 template <class Self>
70 prefix_ void
71 senf::ppi::detail::EventBindingHelper<void,Self>::callback(ClockService::clock_type time)
72 {
73     self().eventTime(time);
74     self().callback_();
75 }
76
77 template <class Self>
78 prefix_ void senf::ppi::detail::EventBindingHelper<void,Self>::callback()
79 {
80     callback(self().manager().now());
81 }
82
83 //-/////////////////////////////////////////////////////////////////////////////////////////////////
84 // private members
85
86 template <class Self>
87 prefix_ Self & senf::ppi::detail::EventBindingHelper<void,Self>::self()
88 {
89     return * static_cast<Self*>(this);
90 }
91
92 //-/////////////////////////////////////////////////////////////////////////////////////////////////
93 // senf::ppi::detail::EventBinding<EvImpl>
94
95 template <class EventType>
96 prefix_ senf::ppi::detail::EventBinding<EventType>::EventBinding(EventManager & manager,
97                                                                  module::Module & module,
98                                                                  Callback callback,
99                                                                  EventDescriptor & descriptor)
100     : EventBindingBase(manager, module, descriptor), callback_(callback)
101 {}
102
103 //-/////////////////////////////////////////////////////////////////////////////////////////////////
104 #undef prefix_
105
106 \f
107 // Local Variables:
108 // mode: c++
109 // fill-column: 100
110 // comment-column: 40
111 // c-file-style: "senf"
112 // indent-tabs-mode: nil
113 // ispell-local-dictionary: "american"
114 // compile-command: "scons -u ../test"
115 // End: