58924b265865a08000570a01f20d332d6069a4a4
[senf.git] / Console / Variables.hh
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 public header */
25
26 #ifndef HH_Variables_
27 #define HH_Variables_ 1
28
29 // Custom includes
30 #include "ParsedCommand.hh"
31
32 #include "Variables.ih"
33 //#include "Variables.mpp"
34 ///////////////////////////////hh.p////////////////////////////////////////
35
36 namespace senf {
37 namespace console {
38
39     template <class Variable>
40     class VariableAttributor
41     {
42     public:
43         typedef typename detail::SetVariable<Variable>::Traits::Overload SetOverload;
44         typedef typename detail::QueryVariable<Variable>::Traits::Overload QueryOverload;
45
46         typedef OverloadedCommandNode node_type;
47         typedef VariableAttributor return_type;
48
49     protected:
50
51     private:
52         VariableAttributor(QueryOverload & queryOverload, SetOverload & setOverload);
53
54         QueryOverload & queryOverload_;
55         SetOverload & setOverload_;
56
57 #ifndef DOXYGEN
58
59         template <class V>
60         friend VariableAttributor<V> senf_console_add_node(DirectoryNode & node, 
61                                                            std::string const & name, 
62                                                            V * var, int);
63
64 #endif
65
66     };
67
68     template <class Variable>
69     VariableAttributor<Variable> senf_console_add_node(DirectoryNode & node, 
70                                                        std::string const & name, 
71                                                        Variable * var, int);
72
73 }}
74
75 ///////////////////////////////hh.e////////////////////////////////////////
76 //#include "Variables.cci"
77 //#include "Variables.ct"
78 #include "Variables.cti"
79 #endif
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // comment-column: 40
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // End: