2cdff1bc1013c6b8bd208b8e729a5718f92d8d59
[senf.git] / Console / Variables.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 Variables inline template implementation */
25
26 #include "Variables.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::console::detail::QueryVariable<Variable>
35
36 template <class Variable>
37 prefix_ senf::console::detail::QueryVariable<Variable>::QueryVariable(Variable const & var)
38     : var_ (var)
39 {}
40
41 template <class Variable>
42 prefix_ Variable const & senf::console::detail::QueryVariable<Variable>::operator()()
43     const
44 {
45     return var_;
46 }
47
48 ///////////////////////////////////////////////////////////////////////////
49 // senf::console::detail::SetVariable<Variable>
50
51 template <class Variable>
52 prefix_ senf::console::detail::SetVariable<Variable>::SetVariable(Variable & var)
53     : var_ (var)
54 {}
55
56 template <class Variable>
57 prefix_ void senf::console::detail::SetVariable<Variable>::operator()(Variable const & value)
58     const
59 {
60     if (handler_) {
61         Variable old (var_);
62         var_ = value;
63         handler_(old);
64     }
65     else
66         var_ = value;
67 }
68
69 template <class Variable>
70 prefix_ void senf::console::detail::SetVariable<Variable>::onChange(OnChangeHandler handler)
71 {
72     handler_ = handler;
73 }
74
75 ///////////////////////////////////////////////////////////////////////////
76 // senf::console::VariableAttributor<Variable>
77
78 template <class Variable>
79 prefix_
80 senf::console::VariableAttributor<Variable>::VariableAttributor(QueryOverload & queryOverload,
81                                                                 SetOverload & setOverload)
82     : queryOverload_ (queryOverload), setOverload_ (setOverload)
83 {}
84
85 ///////////////////////////////////////////////////////////////////////////
86
87 template <class Variable>
88 prefix_ senf::console::VariableAttributor<Variable>
89 senf::console::senf_console_add_node(DirectoryNode & node, std::string const & name,
90                                      Variable * var, int)
91 {
92     typename VariableAttributor<Variable>::SetOverload & setOverload ( 
93         node.add(name, typename detail::SetVariable<Variable>::Function(
94                      detail::SetVariable<Variable>(*var))).overload() );
95     typename VariableAttributor<Variable>::QueryOverload & queryOverload ( 
96         node.add(name, typename detail::QueryVariable<Variable>::Function(
97                      detail::QueryVariable<Variable>(*var))).overload() );
98
99     return VariableAttributor<Variable>(queryOverload, setOverload);
100 }
101
102 ///////////////////////////////cti.e///////////////////////////////////////
103 #undef prefix_
104
105 \f
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // comment-column: 40
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // End: