Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Logger / Target.cti
1 // $Id$
2 //
3 // Copyright (C) 2007
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 Target inline template implementation */
25
26 #include "Target.ih"
27
28 // Custom includes
29 #include "Levels.hh"
30
31 #define prefix_ inline
32 //-/////////////////////////////////////////////////////////////////////////////////////////////////
33
34 //-/////////////////////////////////////////////////////////////////////////////////////////////////
35 // senf::log::Target
36
37 // senf::log::Target::route
38
39 #ifndef DOXYGEN
40
41 template <class A1>
42 prefix_ void senf::log::Target::route(action_t action, int index)
43 {
44     route<A1,mpl::nil,mpl::nil>(action, index);
45 }
46
47 template <class A1, class A2>
48 prefix_ void senf::log::Target::route(action_t action, int index)
49 {
50     route<A1,A2,mpl::nil>(action, index);
51 }
52
53 template <class A1, class A2, class A3>
54 prefix_ void senf::log::Target::route(action_t action, int index)
55 {
56     typedef detail::RouteParameters<A1,A2,A3> Params;
57     route( detail::InstanceP<typename Params::Stream, detail::StreamBase>::value(),
58            detail::InstanceP<typename Params::Area, detail::AreaBase>::value(),
59            Params::Level::value,
60            action, index);
61 }
62
63 template <class A1>
64 prefix_ void senf::log::Target::unroute(action_t action)
65 {
66     unroute<A1,mpl::nil,mpl::nil>(action);
67 }
68
69 template <class A1, class A2>
70 prefix_ void senf::log::Target::unroute(action_t action)
71 {
72     unroute<A1,A2,mpl::nil>(action);
73 }
74
75 template <class A1, class A2, class A3>
76 prefix_ void senf::log::Target::unroute(action_t action)
77 {
78     typedef detail::RouteParameters<A1,A2,A3> Params;
79     unroute( detail::InstanceP<typename Params::Stream, detail::StreamBase>::value(),
80              detail::InstanceP<typename Params::Area, detail::AreaBase>::value(),
81              Params::Level::value,
82              action);
83 }
84
85 #endif
86
87 //-/////////////////////////////////////////////////////////////////////////////////////////////////
88 // namespace senf::log::detail members
89
90 template <class Stream, class Area, class Level>
91 prefix_ void senf::log::detail::write(std::string const & msg)
92 {
93     TargetRegistry::instance().write(Stream::instance(), Area::instance(), Level::value, msg);
94 }
95
96 //-/////////////////////////////////////////////////////////////////////////////////////////////////
97 #undef prefix_
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // comment-column: 40
104 // c-file-style: "senf"
105 // indent-tabs-mode: nil
106 // ispell-local-dictionary: "american"
107 // compile-command: "scons -u test"
108 // End: