6fc076d0e65c8a4e728cfeceb042ee88bf369ace
[senf.git] / Console / OverloadedCommand.cci
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 OverloadedCommand inline non-template implementation */
25
26 //#include "OverloadedCommand.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cci.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::console::CommandOverload
35
36 prefix_ senf::console::CommandOverload::~CommandOverload()
37 {}
38
39 prefix_ void senf::console::CommandOverload::execute(std::ostream & os,
40                                                      ParseCommandInfo const & command)
41 {
42     v_execute(os, command);
43 }
44
45 prefix_ void senf::console::CommandOverload::operator()(std::ostream & os,
46                                                         ParseCommandInfo const & command)
47 {
48     execute(os, command);
49 }
50
51 prefix_ void senf::console::CommandOverload::help(std::ostream & os)
52 {
53     v_help(os);
54 }
55
56 prefix_ senf::console::OverloadedCommandNode & senf::console::CommandOverload::node()
57 {
58     SENF_ASSERT( node_ );
59     return *node_;
60 }
61
62 prefix_ senf::console::CommandOverload::CommandOverload()
63     : node_(0)
64 {}
65
66 ///////////////////////////////////////////////////////////////////////////
67 // senf::console::OverloadedCommandNode
68
69 prefix_ senf::console::OverloadedCommandNode::ptr senf::console::OverloadedCommandNode::create()
70 {
71     return ptr(new OverloadedCommandNode());
72 }
73
74 prefix_ senf::console::OverloadedCommandNode::ptr senf::console::OverloadedCommandNode::thisptr()
75 {
76     return boost::static_pointer_cast<OverloadedCommandNode>(shared_from_this());
77 }
78
79 prefix_ senf::console::OverloadedCommandNode::cptr senf::console::OverloadedCommandNode::thisptr()
80     const
81 {
82     return boost::static_pointer_cast<OverloadedCommandNode const>(shared_from_this());
83 }
84
85 prefix_ senf::console::OverloadedCommandNode &
86 senf::console::OverloadedCommandNode::doc(std::string const & doc)
87 {
88     doc_ = doc;
89     return *this;
90 }
91
92 prefix_ senf::console::OverloadedCommandNode::OverloadedCommandNode()
93 {}
94
95 ///////////////////////////////////////////////////////////////////////////
96 // senf::console::SimpleCommandOverload
97
98 prefix_ senf::console::SimpleCommandOverload::ptr
99 senf::console::SimpleCommandOverload::create(Function fn)
100 {
101     return ptr(new SimpleCommandOverload(fn));
102 }
103
104 prefix_ senf::console::SimpleCommandOverload &
105 senf::console::SimpleCommandOverload::doc(std::string const & doc)
106 {
107     doc_ = doc;
108     return *this;
109 }
110
111 prefix_ senf::console::SimpleCommandOverload::SimpleCommandOverload(Function fn)
112     : fn_ (fn)
113 {}
114
115 ///////////////////////////////cci.e///////////////////////////////////////
116 #undef prefix_
117
118 \f
119 // Local Variables:
120 // mode: c++
121 // fill-column: 100
122 // comment-column: 40
123 // c-file-style: "senf"
124 // indent-tabs-mode: nil
125 // ispell-local-dictionary: "american"
126 // compile-command: "scons -u test"
127 // End: