]> www.ginac.de Git - ginac.git/blob - ginac/input_lexer.h
- Included manpage in dist.
[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 extern "C" {
28 #include <stdio.h>
29 }
30     
31 #include "config.h"
32
33 // yacc stack type
34 #define YYSTYPE ex
35
36 // lex functions/variables
37 extern int ginac_yyerror(char *s);
38 extern int ginac_yylex(void);
39 extern void ginac_yyrestart(FILE *f);
40 #if YYTEXT_POINTER
41 extern char *ginac_yytext;
42 #else
43 extern char ginac_yytext[];
44 #endif
45
46 #ifndef NO_NAMESPACE_GINAC
47 namespace GiNaC {
48 #endif // ndef NO_NAMESPACE_GINAC
49
50 class ex;
51
52 /** Set the input string to be parsed by ginac_yyparse() (used internally). */
53 extern void set_lexer_string(const string &s);
54
55 /** Set the list of predefined symbols for the lexer (used internally). */
56 extern void set_lexer_symbols(ex l);
57
58 /** Check whether lexer symbol was predefined (vs. created by the lexer, e.g. function names). */
59 extern bool is_lexer_symbol_predefined(const ex &s);
60
61 /** The expression parser function (used internally). */
62 extern int ginac_yyparse();
63
64 /** The expression returned by the parser (used internally). */
65 extern ex parsed_ex;
66
67 /** Get error message from the parser. */
68 extern string get_parser_error(void);
69
70 #ifndef NO_NAMESPACE_GINAC
71 } // namespace GiNaC
72 #endif // ndef NO_NAMESPACE_GINAC
73
74 #endif // ndef __GINAC_INPUT_LEXER_H__