Year 2007.
[metaproxy-moved-to-github.git] / src / filter_sru_to_z3950.hpp
1 /* $Id: filter_sru_to_z3950.hpp,v 1.4 2007-01-25 14:05:54 adam Exp $
2    Copyright (c) 2005-2007, Index Data.
3
4    See the LICENSE file for details
5  */
6
7 // Filter that does nothing. Use as sru_to_z3950 for new filters 
8 #ifndef FILTER_SRU_TO_Z3950_HPP
9 #define FILTER_SRU_TO_Z3950_HPP
10
11 #include <boost/scoped_ptr.hpp>
12
13 #include "filter.hpp"
14
15 namespace metaproxy_1 {
16     namespace filter {
17         class SRUtoZ3950 : public Base {
18             class Impl;
19             boost::scoped_ptr<Impl> m_p;
20         public:
21             SRUtoZ3950();
22             ~SRUtoZ3950();
23             void configure(const xmlNode *xmlnode);
24             void process(metaproxy_1::Package & package) const;
25         };
26     }
27 }
28
29 extern "C" {
30     extern struct metaproxy_1_filter_struct metaproxy_1_filter_sru_to_z3950;
31 }
32
33 #endif
34 /*
35  * Local variables:
36  * c-basic-offset: 4
37  * indent-tabs-mode: nil
38  * c-file-style: "stroustrup"
39  * End:
40  * vim: shiftwidth=4 tabstop=8 expandtab
41  */