Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / src / html_parser.hpp
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 #ifndef HTML_PARSER_HPP
20 #define HTML_PARSER_HPP
21
22 #include <boost/scoped_ptr.hpp>
23
24 namespace metaproxy_1 {
25         class HTMLParserEvent {
26         public:
27             virtual void openTagStart(const char *tag, int tag_len) = 0;
28             virtual void anyTagEnd(const char *tag, int tag_len,
29                                    int close_it) = 0;
30             virtual void attribute(const char *tag, int tag_len,
31                                    const char *attr, int attr_len,
32                                    const char *value, int val_len,
33                                    const char *sep) = 0;
34             virtual void closeTag(const char *tag, int tag_len) = 0;
35             virtual void text(const char *value, int len) = 0;
36             virtual ~ HTMLParserEvent();
37         };
38         class HTMLParser {
39             class Rep;
40         public:
41             HTMLParser();
42             ~HTMLParser();
43             void parse(HTMLParserEvent &event, const char *str) const;
44             void set_verbose(int v);
45         private:
46             boost::scoped_ptr<Rep> m_p;
47         };
48 }
49
50 #endif
51 /*
52  * Local variables:
53  * c-basic-offset: 4
54  * c-file-style: "Stroustrup"
55  * indent-tabs-mode: nil
56  * End:
57  * vim: shiftwidth=4 tabstop=8 expandtab
58  */
59