You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/lib/antlr/antlr/TokenStream.h

35 lines
631 B

#ifndef INC_TokenStream_h__
#define INC_TokenStream_h__
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
* Software rights: http://www.antlr.org/license.html
*
* $Id$
*/
#include <antlr/config.h>
#include <antlr/Token.h>
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
namespace antlr {
#endif
/** This interface allows any object to pretend it is a stream
* of tokens.
* @author Terence Parr, MageLang Institute
*/
class ANTLR_API TokenStream {
public:
virtual RefToken nextToken()=0;
virtual ~TokenStream()
{
}
};
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
}
#endif
#endif //INC_TokenStream_h__