Mercurial > hg > octave-avbm
comparison src/pr-output.h @ 3215:bc3fdfe311a3
[project @ 1998-11-10 14:06:21 by jwe]
author | jwe |
---|---|
date | Tue, 10 Nov 1998 14:12:07 +0000 |
parents | 53529870701e |
children | d14c483b3c12 |
comparison
equal
deleted
inserted
replaced
3214:8cc04ca5b4ca | 3215:bc3fdfe311a3 |
---|---|
28 #include "oct-cmplx.h" | 28 #include "oct-cmplx.h" |
29 | 29 |
30 class ComplexMatrix; | 30 class ComplexMatrix; |
31 class Matrix; | 31 class Matrix; |
32 class Range; | 32 class Range; |
33 class boolMatrix; | |
33 class charMatrix; | 34 class charMatrix; |
34 | 35 |
35 extern void | 36 extern void |
36 octave_print_internal (ostream& os, double d, | 37 octave_print_internal (ostream& os, double d, |
37 bool pr_as_read_syntax = false); | 38 bool pr_as_read_syntax = false); |
54 octave_print_internal (ostream& os, const Range& r, | 55 octave_print_internal (ostream& os, const Range& r, |
55 bool pr_as_read_syntax = false, | 56 bool pr_as_read_syntax = false, |
56 int extra_indent = 0); | 57 int extra_indent = 0); |
57 | 58 |
58 extern void | 59 extern void |
60 octave_print_internal (ostream& os, const boolMatrix& m, | |
61 bool pr_as_read_syntax = false, | |
62 int extra_indent = 0); | |
63 | |
64 extern void | |
59 octave_print_internal (ostream& os, const charMatrix& chm, | 65 octave_print_internal (ostream& os, const charMatrix& chm, |
60 bool pr_as_read_syntax = false, | 66 bool pr_as_read_syntax = false, |
61 bool pr_as_string = false, | 67 int extra_indent = 0, |
62 int extra_indent = 0); | 68 bool pr_as_string = false); |
63 | 69 |
64 #endif | 70 #endif |
65 | 71 |
66 /* | 72 /* |
67 ;;; Local Variables: *** | 73 ;;; Local Variables: *** |