PPI: Add methods to IntervalTimer to change the timer interval
[senf.git] / PPI / Splitters.hh
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 Splitters public header */
25
26 #ifndef HH_SENF_PPI_Splitters_
27 #define HH_SENF_PPI_Splitters_ 1
28
29 // Custom includes
30 #include <boost/ptr_container/ptr_vector.hpp>
31 #include "predecl.hh"
32 #include "Connectors.hh"
33 #include "Module.hh"
34
35 //#include "Splitters.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39 namespace ppi {
40
41 #ifndef DOXYGEN
42
43     template <class Target>
44     connector::GenericActiveOutput & connect(module::ActiveSplitter & source, Target & target);
45     
46 #endif
47
48 namespace module {
49
50     class ActiveSplitter
51         : public Module
52     {
53         SENF_PPI_MODULE(ActiveSplitter);
54     public:
55         connector::PassiveInput<> input;
56
57         ActiveSplitter();
58
59     private:
60         connector::ActiveOutput<> & newOutput();
61
62 #ifndef DOXYGEN
63     public:
64 #endif
65         template <class Target>
66         connector::GenericActiveOutput & connect(Target & target);
67
68     private:
69         void request();
70
71         typedef boost::ptr_vector<connector::ActiveOutput<> > Outputs;
72         Outputs outputs_;
73     };
74
75 }}}
76
77
78
79 ///////////////////////////////hh.e////////////////////////////////////////
80 #include "Splitters.cci"
81 //#include "Splitters.ct"
82 #include "Splitters.cti"
83 #endif
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: