From: Terence Parr <> Date: Tue, 3 Oct 1995 23:14:16 +0000 (-0500) Subject: auto commit for import X-Git-Url: https://pd.if.org/git/?p=pccts;a=commitdiff_plain;h=7dc4b5173253b04501bd18a7d1b2e039feec057f auto commit for import --- diff --git a/testcpp/2/MyLexer.h b/testcpp/2/MyLexer.h new file mode 100755 index 0000000..d008328 --- /dev/null +++ b/testcpp/2/MyLexer.h @@ -0,0 +1,11 @@ +/* MyTokenBuffer.h */ + +#include ATOKENBUFFER_H + +class MyLexer : public ANTLRTokenStream { +private: + int c; +public: + MyLexer(); + virtual ANTLRAbstractToken *getToken(); +};