| Index: third_party/hunspell/src/parsers/odfparser.hxx
|
| diff --git a/third_party/hunspell/src/hunspell/license.hunspell b/third_party/hunspell/src/parsers/odfparser.hxx
|
| similarity index 67%
|
| copy from third_party/hunspell/src/hunspell/license.hunspell
|
| copy to third_party/hunspell/src/parsers/odfparser.hxx
|
| index 89c1ec7ae04f119947477e351e0aeda9bb297002..c8d40c7be96d16ecc937208c6dc72c89e24adec6 100644
|
| --- a/third_party/hunspell/src/hunspell/license.hunspell
|
| +++ b/third_party/hunspell/src/parsers/odfparser.hxx
|
| @@ -1,3 +1,9 @@
|
| +/*
|
| + * ODF parser class for MySpell
|
| + *
|
| + * Copyright (C) 2014, Laszlo Nemeth
|
| + *
|
| + */
|
| /* ***** BEGIN LICENSE BLOCK *****
|
| * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
| *
|
| @@ -14,33 +20,15 @@
|
| * The Original Code is Hunspell, based on MySpell.
|
| *
|
| * The Initial Developers of the Original Code are
|
| - * Kevin Hendricks (MySpell) and Laszlo Nemeth (Hunspell).
|
| + * Kevin Hendricks (MySpell) and Németh László (Hunspell).
|
| * Portions created by the Initial Developers are Copyright (C) 2002-2005
|
| * the Initial Developers. All Rights Reserved.
|
| *
|
| - * Contributor(s):
|
| - * David Einstein
|
| - * Davide Prina
|
| - * Giuseppe Modugno
|
| - * Gianluca Turconi
|
| - * Simon Brouwer
|
| - * Noll Janos
|
| - * Biro Arpad
|
| - * Goldman Eleonora
|
| - * Sarlos Tamas
|
| - * Bencsath Boldizsar
|
| - * Halacsy Peter
|
| - * Dvornik Laszlo
|
| - * Gefferth Andras
|
| - * Nagy Viktor
|
| - * Varga Daniel
|
| - * Chris Halls
|
| - * Rene Engelhard
|
| - * Bram Moolenaar
|
| - * Dafydd Jones
|
| - * Harri Pitkanen
|
| - * Andras Timar
|
| - * Tor Lillqvist
|
| + * Contributor(s): David Einstein, Davide Prina, Giuseppe Modugno,
|
| + * Gianluca Turconi, Simon Brouwer, Noll János, Bíró Árpád,
|
| + * Goldman Eleonóra, Sarlós Tamás, Bencsáth Boldizsár, Halácsy Péter,
|
| + * Dvornik László, Gefferth András, Nagy Viktor, Varga Dániel, Chris Halls,
|
| + * Rene Engelhard, Bram Moolenaar, Dafydd Jones, Harri Pitkänen
|
| *
|
| * Alternatively, the contents of this file may be used under the terms of
|
| * either the GNU General Public License Version 2 or later (the "GPL"), or
|
| @@ -56,6 +44,22 @@
|
| *
|
| * ***** END LICENSE BLOCK ***** */
|
|
|
| -#ifndef HUNSPELL_CHROME_CLIENT
|
| -#include "config.h"
|
| +#ifndef ODFPARSER_HXX_
|
| +#define ODFPARSER_HXX_
|
| +
|
| +#include "xmlparser.hxx"
|
| +
|
| +/*
|
| + * HTML Parser
|
| + *
|
| + */
|
| +
|
| +class ODFParser : public XMLParser {
|
| + public:
|
| + explicit ODFParser(const char* wc);
|
| + ODFParser(const w_char* wordchars, int len);
|
| + virtual bool next_token(std::string&);
|
| + virtual ~ODFParser();
|
| +};
|
| +
|
| #endif
|
|
|