metaproxy  1.3.55
factory_static.cpp
Go to the documentation of this file.
1 /* This file is part of Metaproxy.
2  Copyright (C) 2005-2013 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 <iostream>
20 #include <stdexcept>
21 
22 #include "factory_static.hpp"
23 
24 #include "config.hpp"
25 #include <metaproxy/filter.hpp>
26 #include <metaproxy/package.hpp>
27 
28 #include "factory_filter.hpp"
29 
30 #include "filter_auth_simple.hpp"
31 #include "filter_backend_test.hpp"
32 #include "filter_bounce.hpp"
33 #ifndef WIN32
34 #include "filter_cgi.hpp"
35 #endif
36 #include "filter_cql_to_rpn.hpp"
37 #include "filter_frontend_net.hpp"
38 #include "filter_http_file.hpp"
39 #include "filter_limit.hpp"
40 #include "filter_load_balance.hpp"
41 #include "filter_log.hpp"
42 #include "filter_multi.hpp"
43 #include "filter_query_rewrite.hpp"
46 #include "filter_sort.hpp"
47 #include "filter_sru_to_z3950.hpp"
48 #include "filter_template.hpp"
49 #include "filter_virt_db.hpp"
50 #include "filter_z3950_client.hpp"
52 #include "filter_zoom.hpp"
53 
54 namespace mp = metaproxy_1;
55 
57 {
58  struct metaproxy_1_filter_struct *buildins[] = {
62 #ifndef WIN32
64 #endif
82  0
83  };
84  int i;
85 
86  for (i = 0; buildins[i]; i++)
87  add_creator(buildins[i]->type, buildins[i]->creator);
88 }
89 
90 
91 /*
92  * Local variables:
93  * c-basic-offset: 4
94  * c-file-style: "Stroustrup"
95  * indent-tabs-mode: nil
96  * End:
97  * vim: shiftwidth=4 tabstop=8 expandtab
98  */
99