Happy new year
[metaproxy-moved-to-github.git] / src / router_flexml.hpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2011 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 #ifndef ROUTER_FLEXML_HPP
20 #define ROUTER_FLEXML_HPP
21
22 #include <metaproxy/router.hpp>
23
24 #include "factory_filter.hpp"
25
26 #include <stdexcept>
27
28 #include <boost/scoped_ptr.hpp>
29
30 namespace metaproxy_1 
31 {
32     class RouterFleXML : public metaproxy_1::Router 
33     {
34         class Rep;
35         class Route;
36         class Pos;
37     public:
38         RouterFleXML(std::string xmlconf, metaproxy_1::FactoryFilter &factory,
39             bool test_only);
40         RouterFleXML(xmlDocPtr doc, metaproxy_1::FactoryFilter &factory,
41                      bool test_only, const char *file_include_path);
42         
43         ~RouterFleXML();
44
45         virtual RoutePos *createpos() const;
46         void start();
47     private:
48         boost::scoped_ptr<Rep> m_p;
49     };
50  
51 };
52 #endif
53
54 /*
55  * Local variables:
56  * c-basic-offset: 4
57  * c-file-style: "Stroustrup"
58  * indent-tabs-mode: nil
59  * End:
60  * vim: shiftwidth=4 tabstop=8 expandtab
61  */
62