5fcbcfd46416550e747d1148d1430e8b2eb234d3
[metaproxy-moved-to-github.git] / src / filter_template.hpp
1 /* $Id: filter_template.hpp,v 1.2 2005-12-11 17:20:18 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 // Filter that does nothing. Use as template for new filters 
8 #ifndef FILTER_TEMPLATE_HPP
9 #define FILTER_TEMPLATE_HPP
10
11 #include <boost/scoped_ptr.hpp>
12
13 #include "filter.hpp"
14
15 namespace yp2 {
16     namespace filter {
17         class Template : public Base {
18             class Rep;
19             boost::scoped_ptr<Rep> m_p;
20         public:
21             Template();
22             ~Template();
23             void process(yp2::Package & package) const;
24         };
25     }
26 }
27
28 #endif
29 /*
30  * Local variables:
31  * c-basic-offset: 4
32  * indent-tabs-mode: nil
33  * c-file-style: "stroustrup"
34  * End:
35  * vim: shiftwidth=4 tabstop=8 expandtab
36  */