Update mojo sdk to rev 1dc8a9a5db73d3718d99917fadf31f5fb2ebad4f
[chromium-blink-merge.git] / third_party / hunspell / src / parsers / firstparser.hxx
blob1f792899ca6bc3cba8cd7d15ebaecd70fc577259
1 /*
2 * parser classes of HunTools
4 * implemented: text, HTML, TeX, first word
6 * Copyright (C) 2003, Laszlo Nemeth
8 */
10 #ifndef _FIRSTPARSER_HXX_
11 #define _FIRSTPARSER_HXX_
13 #include "textparser.hxx"
16 * Check first word of the input line
20 class FirstParser : public TextParser
23 public:
26 FirstParser(const char * wc);
27 virtual ~FirstParser();
29 virtual char * next_token();
33 #endif