Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / src / filter_template.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include "filter_template.hpp"
21 #include <metaproxy/package.hpp>
22 #include <metaproxy/util.hpp>
23
24 #include <boost/scoped_ptr.hpp>
25 #include <boost/thread/mutex.hpp>
26
27 #include <yaz/zgdu.h>
28
29 namespace mp = metaproxy_1;
30 namespace yf = mp::filter;
31
32 namespace metaproxy_1 {
33     namespace filter {
34         class Template : public Base {
35         public:
36             Template();
37             ~Template();
38             void process(metaproxy_1::Package & package) const;
39             void configure(const xmlNode * ptr, bool test_only,
40                            const char *path);
41         private:
42             int m_dummy;
43         };
44     }
45 }
46
47 yf::Template::Template()
48 {
49 }
50
51 yf::Template::~Template()
52 {
53 }
54
55 void yf::Template::configure(const xmlNode *xmlnode, bool test_only,
56                              const char *path)
57 {
58 }
59
60 void yf::Template::process(mp::Package &package) const
61 {
62     package.move();
63 }
64
65
66 static mp::filter::Base* filter_creator()
67 {
68     return new mp::filter::Template;
69 }
70
71 extern "C" {
72     struct metaproxy_1_filter_struct metaproxy_1_filter_template = {
73         0,
74         "template",
75         filter_creator
76     };
77 }
78
79
80 /*
81  * Local variables:
82  * c-basic-offset: 4
83  * c-file-style: "Stroustrup"
84  * indent-tabs-mode: nil
85  * End:
86  * vim: shiftwidth=4 tabstop=8 expandtab
87  */
88