Mercurial > hg > octave-max
annotate src/pt-mat.h @ 14428:099bd779466c
test: Fix failing %!test in fileread.m
* fileread.m: Fix failing %!test.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Fri, 02 Mar 2012 22:14:27 -0800 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
1739 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11586
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
1739 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
1739 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
1739 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_tree_mat_h) | |
24 #define octave_tree_mat_h 1 | |
25 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
26 #include <iosfwd> |
1739 | 27 |
2086 | 28 class octave_value; |
2982 | 29 class octave_value_list; |
30 class tree_argument_list; | |
1739 | 31 |
2124 | 32 class tree_walker; |
33 | |
4219 | 34 #include "base-list.h" |
1739 | 35 #include "pt-exp.h" |
7336 | 36 #include "symtab.h" |
1739 | 37 |
38 // General matrices. This allows us to construct matrices from | |
39 // other matrices, variables, and functions. | |
40 | |
41 class | |
4219 | 42 tree_matrix : public tree_expression, |
10313 | 43 public octave_base_list<tree_argument_list *> |
1739 | 44 { |
45 public: | |