1
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
1
|
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 |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
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 |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
1
|
20 |
|
21 */ |
|
22 |
383
|
23 #if !defined (octave_pr_output_h) |
|
24 #define octave_pr_output_h 1 |
1
|
25 |
625
|
26 class ostream; |
1
|
27 |
1651
|
28 #include "oct-cmplx.h" |
|
29 |
1738
|
30 class ComplexMatrix; |
1
|
31 class Matrix; |
1738
|
32 class Range; |
1572
|
33 class charMatrix; |
1
|
34 |
2920
|
35 extern void |
|
36 octave_print_internal (ostream& os, double d, |
|
37 bool pr_as_read_syntax = false); |
625
|
38 |
2920
|
39 extern void |
|
40 octave_print_internal (ostream& os, const Matrix& m, |
|
41 bool pr_as_read_syntax = false, |
|
42 int extra_indent = 0); |
625
|
43 |
2920
|
44 extern void |
|
45 octave_print_internal (ostream& os, const Complex& c, |
|
46 bool pr_as_read_syntax = false); |
625
|
47 |
2920
|
48 extern void |
|
49 octave_print_internal (ostream& os, const ComplexMatrix& cm, |
|
50 bool pr_as_read_syntax = false, |
|
51 int extra_indent = 0); |
625
|
52 |
2920
|
53 extern void |
|
54 octave_print_internal (ostream& os, const Range& r, |
|
55 bool pr_as_read_syntax = false, |
|
56 int extra_indent = 0); |
1
|
57 |
2920
|
58 extern void |
|
59 octave_print_internal (ostream& os, const charMatrix& chm, |
|
60 bool pr_as_read_syntax = false, |
|
61 bool pr_as_string = false, |
|
62 int extra_indent = 0); |
1355
|
63 |
1
|
64 #endif |
|
65 |
|
66 /* |
|
67 ;;; Local Variables: *** |
|
68 ;;; mode: C++ *** |
|
69 ;;; End: *** |
|
70 */ |