Year 2007.
[metaproxy-moved-to-github.git] / src / filter_dl.cpp
1 /* $Id: filter_dl.cpp,v 1.8 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 #include "config.hpp"
8
9 #include "filter.hpp"
10 #include "package.hpp"
11
12 namespace mp = metaproxy_1;
13
14 namespace metaproxy_1 {
15     namespace filter {
16         class Filter_dl: public mp::filter::Base {
17         public:
18             void process(mp::Package & package) const;
19         };
20     }
21 }
22
23 void mp::filter::Filter_dl::process(mp::Package & package) const
24 {
25 }
26
27 static mp::filter::Base* filter_creator()
28 {
29     return new mp::filter::Filter_dl;
30 }
31
32 extern "C" {
33     struct metaproxy_1_filter_struct metaproxy_1_filter_dl = {
34         0,
35         "dl",
36         filter_creator
37     };
38 }
39
40 /*
41  * Local variables:
42  * c-basic-offset: 4
43  * indent-tabs-mode: nil
44  * c-file-style: "stroustrup"
45  * End:
46  * vim: shiftwidth=4 tabstop=8 expandtab
47  */