switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / parameter.hh
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief parameter public header */
30
31 /** \defgroup boost_parameter Boost.Parameter utilities
32
33     Here we define some utilities for the <a
34     href="http://www.boost.org/doc/libs/release/libs/parameter/doc/html/index.html">Boost.Parameter</a>
35     library.
36  */
37
38 #ifndef HH_SENF_Utils_parameter_
39 #define HH_SENF_Utils_parameter_ 1
40
41 // Custom includes
42 #include <boost/parameter/binding.hpp>
43 #include <boost/type_traits/is_same.hpp>
44 #include <boost/mpl/not.hpp>
45
46 //#include "parameter.mpp"
47 //-/////////////////////////////////////////////////////////////////////////////////////////////////
48
49 namespace senf {
50
51     ///\addtogroup boost_parameter
52     //\{
53
54     /** \brief Test \a ArgumentPack, whether the \a TagType argument was supplied
55
56         This check will test, whether the argument identified by the \a TagType keyword tag type was
57         specified in the \a ArgumentPack. This inherits from \c boost::mpl::true_ or \c
58         boost::mpl::false_ accordingly.
59
60         \tparam ArgumentPack argument pack to check
61         \tparam TagType keyword tag type identifying the argument to check
62      */
63     template <class ArgumentPack, class TagType>
64     struct has_parameter
65         : public boost::mpl::not_<
66               boost::is_same< typename boost::parameter::binding< ArgumentPack, TagType, void>::type,
67                                                                   void > >::type
68     {};
69
70     //\}
71 }
72
73 //-/////////////////////////////////////////////////////////////////////////////////////////////////
74 //#include "parameter.cci"
75 //#include "parameter.ct"
76 //#include "parameter.cti"
77 #endif
78
79 \f
80 // Local Variables:
81 // mode: c++
82 // fill-column: 100
83 // comment-column: 40
84 // c-file-style: "senf"
85 // indent-tabs-mode: nil
86 // ispell-local-dictionary: "american"
87 // compile-command: "scons -u test"
88 // End: