]> www.ginac.de Git - ginac.git/blob - ginac/input_lexer.h
575c836c75c9bca76adbcccbf38446e0a3084ce9
[ginac.git] / ginac / input_lexer.h
1 /** @file input_lexer.h
2  *
3  *  Lexical analyzer definition for reading expressions.
4  *  This file must be processed with flex. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #ifndef __GINAC_INPUT_LEXER_H__
25 #define __GINAC_INPUT_LEXER_H__
26
27 #include <stdio.h>
28
29 #include "config.h"
30
31 // yacc stack type
32 #define YYSTYPE ex
33
34 // lex functions/variables
35 extern int ginac_yyerror(char *s);
36 extern int ginac_yylex(void);
37 extern void ginac_yyrestart(FILE *f);
38 #if YYTEXT_POINTER
39 extern char *ginac_yytext;
40 #else
41 extern char ginac_yytext[];
42 #endif
43
44 #ifndef NO_NAMESPACE_GINAC
45 namespace GiNaC {
46 #endif // ndef NO_NAMESPACE_GINAC
47
48 class ex;
49
50 /** Set the input string to be parsed by yyparse(). */
51 extern void set_lexer_string(const string &s);
52
53 /** Set the list of predefined symbols for the lexer (used internally for stream input). */
54 extern void set_lexer_symbols(ex l);
55
56 /** The expression parser function (used internally for stream input). */
57 extern int yyparse();
58
59 /** The expression returned by the parser (used internally for stream input). */
60 extern ex parsed_ex;
61
62 /** Get error message from the parser. */
63 extern string get_parser_error(void);
64
65 #ifndef NO_NAMESPACE_GINAC
66 } // namespace GiNaC
67 #endif // ndef NO_NAMESPACE_GINAC
68
69 #endif // ndef __GINAC_INPUT_LEXER_H__