Socket/Protocols/INet: Fix INet6Address in6_addr constructor
[senf.git] / Console / ScopedDirectory.cti
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 ScopedDirectory inline template implementation */
25
26 //#include "ScopedDirectory.ih"
27
28 // Custom includes
29 #include <boost/bind.hpp>
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::OwnerNodeCreateTraits<Owner,Object>::Creator
36
37 template <class Owner, class Object>
38 prefix_ typename senf::console::OwnerNodeCreateTraits<Owner,Object>::NodeType &
39 senf::console::OwnerNodeCreateTraits<Owner,Object>::Creator::create(DirectoryNode & node,
40                                                                     Owner & owner,
41                                                                     std::string const & name,
42                                                                     Object const & ob)
43 {
44     return senf_console_add_node(node, owner, name, ob);
45 }
46
47 ///////////////////////////////////////////////////////////////////////////
48 // senf::console::ScopedDirectory<Owner>
49
50 template <class Owner>
51 prefix_ senf::console::ScopedDirectory<Owner>::ScopedDirectory(Owner * owner)
52     : owner_ (owner)
53 {
54     SENF_ASSERT(owner_);
55 }
56
57 template <class Owner>
58 template <class Object>
59 prefix_ typename senf::console::OwnerNodeCreateTraits<Owner, Object>::NodeType &
60 senf::console::ScopedDirectory<Owner>::add(std::string const & name, Object const & ob)
61 {
62     return OwnerNodeCreateTraits<Owner, Object>::Creator::create(node(), *owner_, name, ob);
63 }
64
65 template <class Owner, class Function>
66 prefix_ senf::console::SimpleCommandNode & senf::console::
67 senf_console_add_node(DirectoryNode & node, Owner & , std::string const & name,
68                       Function const & fn)
69 {
70     return node.add(name,fn);
71 }
72
73 template <class Owner>
74 prefix_ senf::console::SimpleCommandNode & senf::console::
75 senf_console_add_node(DirectoryNode & node, Owner & owner, std::string const & name,
76                       void (Owner::*fn)(std::ostream & output, 
77                                         CommandNode::Arguments const & arguments))
78 {
79     return node.add(name, boost::bind(fn,boost::ref(owner),_1,_2));
80 }
81
82 template <class Node>
83 prefix_ senf::console::DirectoryNode & senf::console::
84 senf_console_add_node(DirectoryNode & dir, std::string const & name, Node const & node, int,
85                       typename boost::enable_if< boost::is_convertible<Node*, ScopedDirectoryBase*> >::type *)
86 {
87     return dir.add(name, node.node().thisptr());
88 }
89
90 ///////////////////////////////////////////////////////////////////////////
91 // senf::console::ScopedDirectory<void>
92
93 template <class Object>
94 prefix_ typename senf::console::NodeCreateTraits<Object>::NodeType &
95 senf::console::ScopedDirectory<void>::add(std::string const & name, Object const & ob)
96 {
97     return node().add(name, ob);
98 }
99
100 ///////////////////////////////cti.e///////////////////////////////////////
101 #undef prefix_
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: