Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. #ifndef _xmltokenizer_h_
  3. #define _xmltokenizer_h_
  4.  
  5. #include "yacasbase.h"
  6. #include "tokenizer.h"
  7.  
  8. class XmlTokenizer : public LispTokenizer
  9. {
  10. public:
  11.   XmlTokenizer() {}
  12.   /// NextToken returns a string representing the next token,
  13.   /// or an empty list.
  14.   virtual LispString * NextToken(LispInput& aInput,
  15.                                   LispHashTable& aHashTable);
  16.   virtual ~XmlTokenizer();
  17. };
  18.  
  19. #endif
  20.  
  21.