summaryrefslogtreecommitdiff
path: root/src/parsers/manparser.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsers/manparser.hxx')
-rw-r--r--src/parsers/manparser.hxx38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/parsers/manparser.hxx b/src/parsers/manparser.hxx
new file mode 100644
index 0000000..6db37c5
--- /dev/null
+++ b/src/parsers/manparser.hxx
@@ -0,0 +1,38 @@
+/*
+ * 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
+