Utils: Allow membind-ing const member functions
[senf.git] / PPI / RateFilter.hh
1 // Copyright (C) 2007
2 // Fraunhofer Institute for Open Communication Systems (FOKUS)
3 // Competence Center NETwork research (NET), St. Augustin, GERMANY
4 //     Stefan Bund <g0dil@berlios.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief RateFilter public header */
23
24 #ifndef HH_SENF_PPI_RateFilter_
25 #define HH_SENF_PPI_RateFilter_ 1
26
27 // Custom includes
28 #include "Connectors.hh"
29 #include "Module.hh"
30 #include "IntervalTimer.hh"
31
32 //#include "RateFilter.mpp"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36 namespace ppi {
37 namespace module {
38
39 class RateFilter
40     : public Module
41 {
42     SENF_PPI_MODULE(RateFilter);
43
44 public:
45     RateFilter(senf::ClockService::clock_type interval);
46 //    void changeInterval(senf::ClockService::clock_type interval);   not yet implemented!
47     senf::ClockService::clock_type interval() const;
48     
49     connector::ActiveInput<> input;
50     connector::ActiveOutput<> output;
51
52 private:
53     void timeout();
54     ppi::IntervalTimer timer_;
55 };
56
57 }}} //namespaces
58
59 ///////////////////////////////hh.e////////////////////////////////////////
60 //#include "RateFilter.cci"
61 //#include "RateFilter.ct"
62 //#include "RateFilter.cti"
63 #endif
64
65 \f
66 // Local Variables:
67 // mode: c++
68 // fill-column: 100
69 // c-file-style: "senf"
70 // indent-tabs-mode: nil
71 // ispell-local-dictionary: "american"
72 // compile-command: "scons -u test"
73 // comment-column: 40
74 // End: