Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / PPI / MultiConnectorMixin.ih
1 // $Id$
2 //
3 // Copyright (C) 2009
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 MultiConnectorMixin internal header */
25
26 #ifndef IH_SENF_PPI_MultiConnectorMixin_
27 #define IH_SENF_PPI_MultiConnectorMixin_ 1
28
29 // Custom includes
30
31 //-/////////////////////////////////////////////////////////////////////////////////////////////////
32
33 namespace senf {
34 namespace ppi {
35 namespace module {
36 namespace detail {
37
38     struct MultiConnectorMixinAccess
39     {
40 #       define BOOST_PP_ITERATION_PARAMS_1 (4, ( \
41             0, \
42             SENF_MULTI_CONNECTOR_MAX_ARGS,                              \
43             SENF_ABSOLUTE_INCLUDE_PATH(PPI/MultiConnectorMixin.mpp),    \
44             8 ))
45 #       include BOOST_PP_ITERATE()
46     };
47
48     template <class KeyType, class ConnectorType>
49     struct MultiConnectorDefaultContainer
50     {
51         typedef boost::ptr_map<KeyType, ConnectorType> type;
52     };
53
54     template <class Module, class Connector>
55     class MultiConnectorWrapper
56         : public Connector
57     {
58     private:
59         virtual void v_disconnected();
60     };
61
62 #ifndef DOXYGEN
63
64     template <class ConnectorType>
65     struct MultiConnectorDefaultContainer<void,ConnectorType>
66     {
67         typedef boost::ptr_vector<ConnectorType> type;
68     };
69
70 #endif
71
72     template <class ConnectorType>
73     struct MultiConnectorSelectBase
74         : public boost::mpl::if_<
75               boost::is_base_of<connector::InputConnector, ConnectorType>,
76               ppi::detail::DisableStandardInput, ppi::detail::DisableStandardOutput >
77     {};
78
79     template <class T> senf::mpl::rv<0> isMulticonnector(...);
80     template <class T> senf::mpl::rv<1> isMulticonnector(
81         typename boost::enable_if<boost::is_base_of<connector::OutputConnector,
82                                                     typename T::ConnectorType>,
83                                   int>::type);
84     template <class T> senf::mpl::rv<2> isMulticonnector(
85         typename boost::enable_if<boost::is_base_of<connector::InputConnector,
86                                                     typename T::ConnectorType>,
87                                   int>::type);
88
89     template <class T, unsigned N>
90     struct IsMulticonnectorSource_
91         : public boost::false_type
92     {};
93
94     template <class T>
95     struct IsMulticonnectorSource_<T, 1u>
96         : public boost::true_type
97     {};
98
99     template <class T>
100     struct IsMulticonnectorSource
101         : public IsMulticonnectorSource_<T, SENF_MPL_RV(isMulticonnector<T>(0))>
102     {};
103
104     template <class T, unsigned N>
105     struct IsMulticonnectorTarget_
106         : public boost::false_type
107     {};
108
109     template <class T>
110     struct IsMulticonnectorTarget_<T, 2u>
111         : public boost::true_type
112     {};
113
114     template <class T>
115     struct IsMulticonnectorTarget
116         : public IsMulticonnectorTarget_<T, SENF_MPL_RV(isMulticonnector<T>(0))>
117     {};
118
119
120
121 }}}}
122
123 //-/////////////////////////////////////////////////////////////////////////////////////////////////
124 #endif
125
126 \f
127 // Local Variables:
128 // mode: c++
129 // fill-column: 100
130 // comment-column: 40
131 // c-file-style: "senf"
132 // indent-tabs-mode: nil
133 // ispell-local-dictionary: "american"
134 // compile-command: "scons -u test"
135 // End: