~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/SpellChecker/hunspell/src/parsers/htmlparser.hxx

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::Blocks 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * HTML parser class for MySpell
 
3
 *
 
4
 * implemented: text, HTML, TeX
 
5
 *
 
6
 * Copyright (C) 2002, Laszlo Nemeth
 
7
 *
 
8
 */
 
9
/* ***** BEGIN LICENSE BLOCK *****
 
10
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
11
 *
 
12
 * The contents of this file are subject to the Mozilla Public License Version
 
13
 * 1.1 (the "License"); you may not use this file except in compliance with
 
14
 * the License. You may obtain a copy of the License at
 
15
 * http://www.mozilla.org/MPL/
 
16
 *
 
17
 * Software distributed under the License is distributed on an "AS IS" basis,
 
18
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
19
 * for the specific language governing rights and limitations under the
 
20
 * License.
 
21
 *
 
22
 * The Original Code is Hunspell, based on MySpell.
 
23
 *
 
24
 * The Initial Developers of the Original Code are
 
25
 * Kevin Hendricks (MySpell) and Németh László (Hunspell).
 
26
 * Portions created by the Initial Developers are Copyright (C) 2002-2005
 
27
 * the Initial Developers. All Rights Reserved.
 
28
 *
 
29
 * Contributor(s): David Einstein, Davide Prina, Giuseppe Modugno,
 
30
 * Gianluca Turconi, Simon Brouwer, Noll János, Bíró Árpád,
 
31
 * Goldman Eleonóra, Sarlós Tamás, Bencsáth Boldizsár, Halácsy Péter,
 
32
 * Dvornik László, Gefferth András, Nagy Viktor, Varga Dániel, Chris Halls,
 
33
 * Rene Engelhard, Bram Moolenaar, Dafydd Jones, Harri Pitkänen
 
34
 *
 
35
 * Alternatively, the contents of this file may be used under the terms of
 
36
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
37
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
38
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
39
 * of those above. If you wish to allow use of your version of this file only
 
40
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
41
 * use your version of this file under the terms of the MPL, indicate your
 
42
 * decision by deleting the provisions above and replace them with the notice
 
43
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
44
 * the provisions above, a recipient may use your version of this file under
 
45
 * the terms of any one of the MPL, the GPL or the LGPL.
 
46
 *
 
47
 * ***** END LICENSE BLOCK ***** */
 
48
 
 
49
#ifndef _HTMLPARSER_HXX_
 
50
#define _HTMLPARSER_HXX_
 
51
 
 
52
#include "xmlparser.hxx"
 
53
 
 
54
/*
 
55
 * HTML Parser
 
56
 *
 
57
 */
 
58
 
 
59
class HTMLParser : public XMLParser
 
60
{
 
61
 
 
62
public:
 
63
 
 
64
  HTMLParser(const char * wc);
 
65
  HTMLParser(unsigned short * wordchars, int len);
 
66
  char *              next_token();
 
67
  virtual ~HTMLParser();
 
68
 
 
69
};
 
70
 
 
71
 
 
72
#endif
 
73