Rename from yp2 to metaproxy. The namespace for all definitions
[metaproxy-moved-to-github.git] / src / filter_backend_test.hpp
1 /* $Id: filter_backend_test.hpp,v 1.8 2006-03-16 10:40:59 adam Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_BACKEND_TEST_HPP
8 #define FILTER_BACKEND_TEST_HPP
9
10 #include <boost/scoped_ptr.hpp>
11
12 #include "filter.hpp"
13
14 namespace metaproxy_1 {
15     namespace filter {
16         class Backend_test : public Base {
17             class Rep;
18         public:
19             ~Backend_test();
20             Backend_test();
21             void process(metaproxy_1::Package & package) const;
22         private:
23             boost::scoped_ptr<Rep> m_p;
24         };
25     }
26 }
27
28 extern "C" {
29     extern struct metaproxy_1_filter_struct metaproxy_1_filter_backend_test;
30 }
31
32 #endif
33 /*
34  * Local variables:
35  * c-basic-offset: 4
36  * indent-tabs-mode: nil
37  * c-file-style: "stroustrup"
38  * End:
39  * vim: shiftwidth=4 tabstop=8 expandtab
40  */