Use namespace yp2::filter for filters .. Rename filters from
[metaproxy-moved-to-github.git] / src / filter_log.hpp
1
2 #ifndef FILTER_LOG_HPP
3 #define FILTER_LOG_HPP
4
5 #include <stdexcept>
6 #include <vector>
7
8 #include "filter.hpp"
9
10 namespace yp2 {
11     namespace filter {
12         class Log : public Base {
13         public:
14             Log::Log();
15             void process(yp2::Package & package) const;
16         };
17     }
18 }
19
20 #endif
21 /*
22  * Local variables:
23  * c-basic-offset: 4
24  * indent-tabs-mode: nil
25  * End:
26  * vim: shiftwidth=4 tabstop=8 expandtab
27  */