Reorganize examples
[senf.git] / PPI / Setup.hh
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
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 Setup public header */
25
26 #ifndef HH_Setup_
27 #define HH_Setup_ 1
28
29 // Custom includes
30 #include "predecl.hh"
31
32 //#include "Setup.mpp"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36 namespace ppi {
37
38 #ifndef DOXYGEN    
39
40     void connect(connector::ActiveOutput & source, connector::PassiveInput & target);
41     void connect(connector::PassiveOutput & source, connector::ActiveInput & target);
42     
43     template <class M, class C>
44     void connect(M & source, C & target,
45                  typename boost::enable_if< boost::is_base_of<module::Module, M> >::type * = 0,
46                  typename boost::enable_if< boost::is_base_of<connector::Connector, C> >::type * = 0);
47
48     template <class C, class M>
49     void connect(C & source, M & target,
50                  typename boost::enable_if< boost::is_base_of<connector::Connector, C> >::type * = 0,
51                  typename boost::enable_if< boost::is_base_of<module::Module, M> >::type * = 0);
52
53     template <class M1, class M2>
54     void connect(M1 & source, M2 & target,
55                  typename boost::enable_if< boost::is_base_of<module::Module, M1> >::type * = 0,
56                  typename boost::enable_if< boost::is_base_of<module::Module, M2> >::type * = 0);
57
58 #else
59
60     template <class Source, class Target>
61     void connect(Source & source, Target & target);
62
63 #endif
64
65     void run();
66     void init();
67
68 }}
69
70 ///////////////////////////////hh.e////////////////////////////////////////
71 #include "Setup.cci"
72 //#include "Setup.ct"
73 #include "Setup.cti"
74 #endif
75
76 \f
77 // Local Variables:
78 // mode: c++
79 // fill-column: 100
80 // comment-column: 40
81 // c-file-style: "senf"
82 // indent-tabs-mode: nil
83 // ispell-local-dictionary: "american"
84 // compile-command: "scons -u test"
85 // End: