OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * parser classes of HunTools | |
3 * | |
4 * implemented: text, HTML, TeX, first word | |
5 * | |
6 * Copyright (C) 2003, Laszlo Nemeth | |
7 * | |
8 */ | |
9 | |
10 #ifndef _FIRSTPARSER_HXX_ | |
11 #define _FIRSTPARSER_HXX_ | |
12 | |
13 #include "textparser.hxx" | |
14 | |
15 /* | |
16 * Check first word of the input line | |
17 * | |
18 */ | |
19 | |
20 class FirstParser : public TextParser | |
21 { | |
22 | |
23 public: | |
24 | |
25 | |
26 FirstParser(const char * wc); | |
27 virtual ~FirstParser(); | |
28 | |
29 virtual char * next_token(); | |
30 | |
31 }; | |
32 | |
33 #endif | |
34 | |
OLD | NEW |