PPI: Complete connector implementation
[senf.git] / PPI / Route.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 Route inline template implementation */
25
26 #include "Route.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::ppi::detail::RouteImplementation<Source,Target,srcEvent,trgEvent>
35
36 template <class Source, class Target, bool srcEvent, bool trgEvent>
37 prefix_
38 senf::ppi::detail::RouteImplementation<Source,Target,srcEvent,trgEvent>::
39 RouteImplementation(module::Module & module, Source & source, Target & target)
40     : NonForwardingRouteImplementation(module, source, target)
41 {}
42
43 ///////////////////////////////////////////////////////////////////////////
44 // senf::ppi::detail::RouteImplementation<Source, Target, true, false>
45
46 template <class Source, class Target>
47 prefix_
48 senf::ppi::detail::RouteImplementation<Source, Target, true, false>::
49 RouteImplementation(module::Module & module, Source & source, Target & target)
50     : NonForwardingRouteFromEventImplementation(module, source, target)
51 {}
52
53 ///////////////////////////////////////////////////////////////////////////
54 // senf::ppi::detail::RouteImplementation<Source, Target, false, true>
55
56 template <class Source, class Target>
57 prefix_
58 senf::ppi::detail::RouteImplementation<Source, Target, false, true>::
59 RouteImplementation(module::Module & module, Source & source, Target & target)
60     : NonForwardingRouteToEventImplementation(module, source, target)
61 {}
62
63 ///////////////////////////////////////////////////////////////////////////
64 // senf::ppi::detail::RouteImplementation<connector::ActiveInput, Event, false, true>
65
66 template <class Event>
67 prefix_
68 senf::ppi::detail::RouteImplementation<senf::ppi::connector::ActiveInput, Event, false, true>::
69 RouteImplementation(module::Module & module, connector::ActiveInput & source, Event & target)
70     : ForwardForwardingRouteToEventImplementation(module, source, target)
71 {}
72
73 ///////////////////////////////////////////////////////////////////////////
74 // senf::ppi::detail::RouteImplementation<Event, connector::ActiveOutput, true, false>
75
76 template <class Event>
77 prefix_
78 senf::ppi::detail::RouteImplementation<Event, senf::ppi::connector::ActiveOutput, true, false>::
79 RouteImplementation(module::Module & module, Event & source, connector::ActiveOutput & target)
80     : BackwardForwardingRouteFromEventImplementation(module, source, target)
81 {}
82
83 ///////////////////////////////////////////////////////////////////////////
84 // senf::ppi::Route<Source,Target>
85
86 ////////////////////////////////////////
87 // protected members
88
89 template <class Source, class Target>
90 prefix_ senf::ppi::Route<Source,Target>::Route(module::Module & module, Source & source,
91                                                Target & target)
92     : Implementation(module, source, target)
93 {}
94
95 ///////////////////////////////cti.e///////////////////////////////////////
96 #undef prefix_
97
98 \f
99 // Local Variables:
100 // mode: c++
101 // fill-column: 100
102 // comment-column: 40
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // End: