Started work on shared session filter.
[metaproxy-moved-to-github.git] / src / filter_template.hpp
1 /* $Id: filter_template.hpp,v 1.1 2005-11-14 23:35:22 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_TEMPLATE_HPP
8 #define FILTER_TEMPLATE_HPP
9
10 #include <boost/scoped_ptr.hpp>
11
12 #include "filter.hpp"
13
14 namespace yp2 {
15     namespace filter {
16         class Template : public Base {
17             class Rep;
18         public:
19             ~Template();
20             Template();
21             void process(yp2::Package & package) const;
22         private:
23             boost::scoped_ptr<Rep> m_p;
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  */