NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Packets / PacketRegistry.cti
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
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 PacketRegistry inline template implementation */
25
26 #include "PacketRegistry.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////PacketRegistry..p///////////////////////////////////////
32
33 template <class Tag>
34 template <class PacketType>
35 prefix_ senf::PacketRegistry<Tag>::RegistrationProxy<PacketType>::
36 RegistrationProxy(typename Tag::key_t key)
37 {
38     PacketRegistry<Tag>::template registerPacket<PacketType>(key);
39 }
40
41 template <class Tag>
42 template <class PacketType>
43 prefix_ void senf::PacketRegistry<Tag>::registerPacket(typename Tag::key_t key)
44 {
45     registry().registerPacket<PacketType>(key);
46 }
47
48 template <class Tag>
49 template <class PacketType>
50 prefix_ typename Tag::key_t senf::PacketRegistry<Tag>::key()
51 {
52     return registry().key(senf::typeIdValue<PacketType>());
53 }
54
55 template <class Tag>
56 template <class PacketType>
57 prefix_ typename boost::optional<typename Tag::key_t> senf::PacketRegistry<Tag>::key(NoThrow_t)
58 {
59     return registry().key(senf::typeIdValue<PacketType>(),true);
60 }
61
62 template <class Tag>
63 prefix_ typename Tag::key_t senf::PacketRegistry<Tag>::key(Packet packet)
64 {
65     return registry().key(packet.typeId());
66 }
67
68 template <class Tag>
69 prefix_ typename boost::optional<typename Tag::key_t>
70 senf::PacketRegistry<Tag>::key(Packet packet, NoThrow_t)
71 {
72     return registry().key(packet.typeId(),true);
73 }
74
75 template <class Tag>
76 prefix_ senf::PkReg_Entry const & senf::PacketRegistry<Tag>::lookup(typename Tag::key_t key)
77 {
78     return registry().lookup(key);
79 }
80
81 template <class Tag>
82 prefix_ senf::PkReg_Entry const * senf::PacketRegistry<Tag>::lookup(typename Tag::key_t key,
83                                                                     NoThrow_t)
84 {
85     return registry().lookup(key,true);
86 }
87
88 ///////////////////////////////PacketRegistry..e///////////////////////////////////////
89 #undef prefix_
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // c-file-style: "senf"
96 // indent-tabs-mode: nil
97 // ispell-local-dictionary: "american"
98 // compile-command: "scons -u test"
99 // comment-column: 40
100 // End: