Implemented FilterLog filter
[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     class FilterLog : public yp2::Filter {
12     public:
13         FilterLog::FilterLog();
14         void process(yp2::Package & package) const;
15     };
16 }
17
18 #endif
19 /*
20  * Local variables:
21  * c-basic-offset: 4
22  * indent-tabs-mode: nil
23  * End:
24  * vim: shiftwidth=4 tabstop=8 expandtab
25  */