/* * %%nomodsWarning */ /* Web Polygraph http://www.web-polygraph.org/ * (C) 2003-2006 The Measurement Factory * Licensed under the Apache License, Version 2.0 */ #ifndef POLY_LEXER_H #define POLY_LEXER_H #include "xparser/GLexer.h" class PglLexer: public GLexer { public: PglLexer(istream &aSource, const String &aFName); protected: virtual int transition(int, int); }; #endif