d37557e403099d01f38f485fc8a74acbecb829b8
[senf.git] / senf / Utils / Console / ProgramOptions.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 ProgramOptions inline template implementation */
25
26 #include "ProgramOptions.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::console::detail::ProgramOptionsSource
35
36 template <class Container>
37 prefix_ senf::console::detail::ProgramOptionsSource &
38 senf::console::detail::ProgramOptionsSource::nonOptions(Container & container)
39 {
40     nonOptions_.reset(new NonOptionContainerImpl<Container>(container));
41     return *this;
42 }
43
44 ///////////////////////////////////////////////////////////////////////////
45 // senf::console::detail::ProgramOptionsSource::NonOptionContainerImpl
46
47 template <class Container>
48 prefix_
49 senf::console::detail::ProgramOptionsSource::NonOptionContainerImpl<Container>::
50 NonOptionContainerImpl(Container & c)
51     : c_ (c)
52 {}
53
54 template <class Container>
55 prefix_ void
56 senf::console::detail::ProgramOptionsSource::NonOptionContainerImpl<Container>::clear()
57 {
58     c_.clear();
59 }
60
61 template <class Container>
62 prefix_ void
63 senf::console::detail::ProgramOptionsSource::NonOptionContainerImpl<Container>::
64 push_back(std::string const & value)
65 {
66     c_.push_back(value);
67 }
68
69 ///////////////////////////////////////////////////////////////////////////
70 // senf::console::ProgramOptions
71
72 template <class Container>
73 prefix_ senf::console::ProgramOptions &
74 senf::console::ProgramOptions::nonOptions(Container & container)
75 {
76     config_.nonOptions(container);
77     return *this;
78 }
79
80 ///////////////////////////////cti.e///////////////////////////////////////
81 #undef prefix_
82
83 \f
84 // Local Variables:
85 // mode: c++
86 // fill-column: 100
87 // comment-column: 40
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u test"
92 // End: