metaproxy 1.22.1
filter_template.cpp
Go to the documentation of this file.
1/* This file is part of Metaproxy.
2 Copyright (C) Index Data
3
4Metaproxy is free software; you can redistribute it and/or modify it under
5the terms of the GNU General Public License as published by the Free
6Software Foundation; either version 2, or (at your option) any later
7version.
8
9Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10WARRANTY; without even the implied warranty of MERCHANTABILITY or
11FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, 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
29namespace mp = metaproxy_1;
30namespace yf = mp::filter;
31
32namespace 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:
43 };
44 }
45}
46
47yf::Template::Template()
48{
49}
50
51yf::Template::~Template()
52{
53}
54
55void yf::Template::configure(const xmlNode *xmlnode, bool test_only,
56 const char *path)
57{
58}
59
60void yf::Template::process(mp::Package &package) const
61{
62 package.move();
63}
64
65
66static mp::filter::Base* filter_creator()
67{
68 return new mp::filter::Template;
69}
70
71extern "C" {
72 struct metaproxy_1_filter_struct metaproxy_1_filter_template = {
73 0,
74 "template",
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
void process(metaproxy_1::Package &package) const
void configure(const xmlNode *ptr, bool test_only, const char *path)
struct metaproxy_1_filter_struct metaproxy_1_filter_template
static mp::filter::Base * filter_creator()