]> www.ginac.de Git - ginac.git/blob - ginsh/ginsh.h
building in separate directory didn't work
[ginac.git] / ginsh / ginsh.h
1 /** @file ginsh.h
2  *
3  *  Global definitions for ginsh.
4  *
5  *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #ifndef GINSH_H
23 #define GINSH_H
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include <map>
30 #include <string>
31
32 using namespace std;
33
34 #ifdef HAVE_READLINE_READLINE_H
35 extern "C" {
36 #include <readline/readline.h>
37 }
38 #endif
39
40 #ifdef HAVE_READLINE_HISTORY_H
41 extern "C" {
42 #include <readline/history.h>
43 }
44 #endif
45
46 #ifdef IN_GINAC
47 #include "ginac.h"
48 #else
49 #include <ginac/ginac.h>
50 #endif
51
52 #ifndef NO_NAMESPACE_GINAC
53 using namespace GiNaC;
54 #endif // ndef NO_NAMESPACE_GINAC
55
56 // yacc stack type
57 #define YYSTYPE ex
58
59 // lex functions/variables
60 extern int yyerror(char *s);
61 extern int yylex(void);
62 #if YYTEXT_POINTER
63 extern char *yytext;
64 #else
65 extern char yytext[];
66 #endif
67 extern FILE *yyin;
68
69 // List of input files to be processed
70 extern int num_files;
71 extern char **file_list;
72
73 // Table of all used symbols
74 typedef map<string, symbol> sym_tab;
75 extern sym_tab syms;
76
77 #endif