]> www.ginac.de Git - ginac.git/blob - ginac/ginac.h
added example for namespace bracing
[ginac.git] / ginac / ginac.h
1 /** @file ginac.h
2  *
3  *  This include file includes all other public GiNaC headers. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __GINAC_H__
24 #define __GINAC_H__
25
26 #include "version.h"
27
28 #include "basic.h"
29
30 #include "ex.h"
31 #include "normal.h"
32 #include "archive.h"
33 #include "print.h"
34
35 #include "constant.h"
36 #include "fail.h"
37 #include "lst.h"
38 #include "matrix.h"
39 #include "numeric.h"
40 #include "power.h"
41 #include "relational.h"
42 #include "structure.h"
43 #include "symbol.h"
44 #include "pseries.h"
45 #include "wildcard.h"
46 #include "symmetry.h"
47
48 #include "expair.h"
49 #include "expairseq.h"
50 #include "add.h"
51 #include "mul.h"
52
53 #include "exprseq.h"
54 #include "function.h"
55 #include "ncmul.h"
56
57 #include "inifcns.h"
58 #include "fderivative.h"
59 #include "operators.h"
60 #include "hash_map.h"
61
62 #include "idx.h"
63 #include "indexed.h"
64 #include "tensor.h"
65 #include "color.h"
66 #include "clifford.h"
67
68 #ifdef __MAKECINT__
69 #pragma link C++ nestedclass;
70 #pragma link C++ nestedtypedef;
71 #endif
72
73 #endif // ndef __GINAC_H__