Index: third_party/hunspell_new/src/parsers/htmlparser.hxx |
diff --git a/third_party/hunspell_new/src/parsers/htmlparser.hxx b/third_party/hunspell_new/src/parsers/htmlparser.hxx |
deleted file mode 100644 |
index 9a0da7a79b5748871a5d0110f007e4d3cfdf976c..0000000000000000000000000000000000000000 |
--- a/third_party/hunspell_new/src/parsers/htmlparser.hxx |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-/* |
- * HTML parser class for MySpell |
- * |
- * implemented: text, HTML, TeX |
- * |
- * Copyright (C) 2002, Laszlo Nemeth |
- * |
- */ |
- |
-#ifndef _HTMLPARSER_HXX_ |
-#define _HTMLPARSER_HXX_ |
- |
- |
-#include "textparser.hxx" |
- |
-/* |
- * HTML Parser |
- * |
- */ |
- |
-class HTMLParser : public TextParser |
-{ |
-public: |
- |
- HTMLParser(const char * wc); |
- HTMLParser(unsigned short * wordchars, int len); |
- virtual ~HTMLParser(); |
- |
- virtual char * next_token(); |
- |
-private: |
- |
- int look_pattern(const char * p[][2], unsigned int len, int column); |
- int pattern_num; |
- int pattern2_num; |
- int prevstate; |
- int checkattr; |
- char quotmark; |
- |
-}; |
- |
- |
-#endif |
- |