Index: third_party/hunspell_new/src/parsers/manparser.hxx |
diff --git a/third_party/hunspell_new/src/parsers/manparser.hxx b/third_party/hunspell_new/src/parsers/manparser.hxx |
deleted file mode 100644 |
index 6db37c539ca12668224ee7d67386b46e687bc044..0000000000000000000000000000000000000000 |
--- a/third_party/hunspell_new/src/parsers/manparser.hxx |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-/* |
- * parser classes for MySpell |
- * |
- * implemented: text, HTML, TeX |
- * |
- * Copyright (C) 2002, Laszlo Nemeth |
- * |
- */ |
- |
-#ifndef _MANPARSER_HXX_ |
-#define _MANPARSER_HXX_ |
- |
-#include "textparser.hxx" |
- |
-/* |
- * Manparse Parser |
- * |
- */ |
- |
-class ManParser : public TextParser |
-{ |
- |
-protected: |
- |
- |
-public: |
- |
- ManParser(); |
- ManParser(const char * wc); |
- ManParser(unsigned short * wordchars, int len); |
- virtual ~ManParser(); |
- |
- virtual char * next_token(); |
- |
-}; |
- |
-#endif |
- |