Mercurial > hg > octave-lojdl
annotate src/pt-all.h @ 7800:5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 07 May 2008 16:33:15 +0200 |
parents | a1dbe9d80eee |
children | eb63fbe60fab |
rev | line source |
---|---|
3011 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1999, 2001, 2002, 2003, 2004, 2005, 2007 |
4 John W. Eaton | |
3011 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
3011 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
3011 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_tree_all_h) | |
25 #define octave_tree_all_h 1 | |
26 | |
27 #include "pt.h" | |
28 #include "pt-arg-list.h" | |
29 #include "pt-assign.h" | |
3770 | 30 #include "pt-bp.h" |
3011 | 31 #include "pt-binop.h" |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
32 #include "pt-cbinop.h" |
3011 | 33 #include "pt-check.h" |
34 #include "pt-cmd.h" | |
35 #include "pt-colon.h" | |
36 #include "pt-const.h" | |
37 #include "pt-decl.h" | |
38 #include "pt-except.h" | |
39 #include "pt-exp.h" | |
4342 | 40 #include "pt-fcn-handle.h" |
3011 | 41 #include "pt-id.h" |
42 #include "pt-idx.h" | |
43 #include "pt-jump.h" | |
44 #include "pt-loop.h" | |
45 #include "pt-mat.h" | |
3351 | 46 #include "pt-cell.h" |
3011 | 47 #include "pt-misc.h" |
48 #include "pt-pr-code.h" | |
49 #include "pt-select.h" | |
50 #include "pt-stmt.h" | |
51 #include "pt-unop.h" | |
52 #include "pt-pr-code.h" | |
53 #include "pt-walk.h" | |
54 | |
55 #endif | |
56 | |
57 /* | |
58 ;;; Local Variables: *** | |
59 ;;; mode: C++ *** | |
60 ;;; End: *** | |
61 */ |