Same header and footer for all files. Header includes copyright +
[metaproxy-moved-to-github.git] / src / filter_log.hpp
1 /* $Id: filter_log.hpp,v 1.3 2005-10-15 14:09:09 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_LOG_HPP
8 #define FILTER_LOG_HPP
9
10 #include <stdexcept>
11 #include <vector>
12
13 #include "filter.hpp"
14
15 namespace yp2 {
16     namespace filter {
17         class Log : public Base {
18         public:
19             Log::Log();
20             void process(yp2::Package & package) const;
21         };
22     }
23 }
24
25 #endif
26 /*
27  * Local variables:
28  * c-basic-offset: 4
29  * indent-tabs-mode: nil
30  * c-file-style: "stroustrup"
31  * End:
32  * vim: shiftwidth=4 tabstop=8 expandtab
33  */