#pragma once #ifdef TOKEN_QUERY // Conflict with the winnt.h #undef TOKEN_QUERY #endif #include #include #include #include namespace NSQLPureAST { using SQLv1 = NALADefaultAntlr4::SQLv1Antlr4Parser; using NALADefaultAntlr4::SQLv1Antlr4BaseVisitor; struct TParseTree { TStringBuf Text; antlr4::CommonTokenStream* Tokens; SQLv1* Parser; SQLv1::Sql_queryContext* SqlQuery; }; } // namespace NSQLPureAST