// -*- Mode: C++ -*- // // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // parse.h - Various declarations that are needed so that the generated parser // and lexer compile with C++, and to share information between the // parser, lexer, and driver program // // Author : Richard C. Bilson and Rodolfo G. Esteves // Created On : Sun Dec 16 15:00:49 2001 // Last Modified By : Peter A. Buhr // Last Modified On : Wed Jun 28 22:59:27 2017 // Update Count : 174 // #ifndef __PARSER_HH__ #define __PARSER_HH__ int yylex(); #include #include #include "token.h" #endif // __PARSER_HH__ // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //