More functional virt_db filter. Removed p2_* source
[metaproxy-moved-to-github.git] / src / filter_backend_test.hpp
1 /* $Id: filter_backend_test.hpp,v 1.1 2005-10-25 11:48:30 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_BACKEND_TEST_HPP
8 #define FILTER_BACKEND_TEST_HPP
9
10 #include <stdexcept>
11 #include <list>
12
13 #include "filter.hpp"
14
15 namespace yp2 {
16     namespace filter {
17         class Backend_test : public Base {
18             class Rep;
19         public:
20             ~Backend_test();
21             Backend_test();
22             void process(yp2::Package & package) const;
23         private:
24             Rep *m_p;
25         };
26     }
27 }
28
29 #endif
30 /*
31  * Local variables:
32  * c-basic-offset: 4
33  * indent-tabs-mode: nil
34  * c-file-style: "stroustrup"
35  * End:
36  * vim: shiftwidth=4 tabstop=8 expandtab
37  */