Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4680 right-hear 1
 
2
#define _xmltokenizer_h_
3
4
 
5
#include "tokenizer.h"
6
7
 
8
{
9
public:
10
  XmlTokenizer() {}
11
  /// NextToken returns a string representing the next token,
12
  /// or an empty list.
13
  virtual LispString * NextToken(LispInput& aInput,
14
                                  LispHashTable& aHashTable);
15
  virtual ~XmlTokenizer();
16
};
17
18
 
19