summaryrefslogtreecommitdiff
path: root/src/parsers/firstparser.hxx
blob: 1f792899ca6bc3cba8cd7d15ebaecd70fc577259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * parser classes of HunTools
 *
 * implemented: text, HTML, TeX, first word
 *
 * Copyright (C) 2003, Laszlo Nemeth
 *
 */

#ifndef _FIRSTPARSER_HXX_
#define _FIRSTPARSER_HXX_

#include "textparser.hxx"

/*
 * Check first word of the input line
 *
 */

class FirstParser : public TextParser
{

public:
 
  
  FirstParser(const char * wc);
  virtual ~FirstParser();

  virtual char *      next_token();
  
};

#endif