a09c249d3bb4642be9b5fdf9912653cd59f75360
[senf.git] / Packets / PacketRegistry.cti
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 // Definition of inline template funPacketRegistry.ons
24
25 #include "PacketRegistry.ih"
26
27 // Custom includes
28 #include "Packet.hh"
29
30 #define prefix_ inline
31 ///////////////////////////////PacketRegistry..p///////////////////////////////////////
32
33 template <class Tag>
34 template <class OtherPacket>
35 prefix_ void senf::PacketRegistry<Tag>::registerPacket(typename Tag::key_t key)
36 {
37     registry().registerPacket<OtherPacket>(key);
38 }
39
40 template <class Tag>
41 template <class OtherPacket>
42 prefix_ senf::PacketRegistry<Tag>::RegistrationProxy<OtherPacket>::
43 RegistrationProxy(typename Tag::key_t key)
44 {
45     PacketRegistry<Tag>::template registerPacket<OtherPacket>(key);
46 }
47
48 template <class Tag>
49 template <class OtherPacket>
50 prefix_ typename Tag::key_t senf::PacketRegistry<Tag>::key()
51 {
52     return registry().key(senf::typeIdValue<OtherPacket>());
53 }
54
55 template <class KeyType>
56 template <class OtherPacket>
57 prefix_ void
58 senf::impl::PacketRegistryImpl<KeyType>::registerInterpreter(Packet * p,
59                                                                     Packet::iterator b,
60                                                                     Packet::iterator e)
61 {
62     p->registerInterpreter<OtherPacket>(b,e);
63 }
64
65 template <class Tag, class Derived>
66 prefix_ void
67 senf::PacketRegistryMixin<Tag,Derived>::registerInterpreter(typename Tag::key_t key,
68                                                                    Packet::iterator b,
69                                                                    Packet::iterator e)
70     const
71 {
72     PacketRegistry<Tag>::registry().lookup(key)->registerInterpreter(
73         static_cast<Derived const * const>(this),b,e);
74 }
75
76 ///////////////////////////////PacketRegistry..e///////////////////////////////////////
77 #undef prefix_
78
79 \f
80 // Local Variables:
81 // mode: c++
82 // c-file-style: "senf"
83 // End: