Mercurial > hg > octave-lojdl
comparison src/pr-output.h @ 1572:0d9e10d10bd7
[project @ 1995-10-19 04:31:30 by jwe]
author | jwe |
---|---|
date | Thu, 19 Oct 1995 04:31:30 +0000 |
parents | 94697d007075 |
children | e846e361a265 |
comparison
equal
deleted
inserted
replaced
1571:6ddabf91bc4e | 1572:0d9e10d10bd7 |
---|---|
27 class ostream; | 27 class ostream; |
28 | 28 |
29 class Matrix; | 29 class Matrix; |
30 class Complex; | 30 class Complex; |
31 class ComplexMatrix; | 31 class ComplexMatrix; |
32 class charMatrix; | |
32 class Range; | 33 class Range; |
33 class Octave_str_obj; | |
34 | 34 |
35 extern void octave_print_internal (ostream& os, double d, | 35 extern void octave_print_internal (ostream& os, double d, |
36 int pr_as_read_syntax = 0); | 36 int pr_as_read_syntax = 0); |
37 | 37 |
38 extern void octave_print_internal (ostream& os, const Matrix& m, | 38 extern void octave_print_internal (ostream& os, const Matrix& m, |
45 int pr_as_read_syntax = 0); | 45 int pr_as_read_syntax = 0); |
46 | 46 |
47 extern void octave_print_internal (ostream& os, const Range& r, | 47 extern void octave_print_internal (ostream& os, const Range& r, |
48 int pr_as_read_syntax = 0); | 48 int pr_as_read_syntax = 0); |
49 | 49 |
50 extern void octave_print_internal (ostream& os, Octave_str_obj& s, | 50 extern void octave_print_internal (ostream& os, const charMatrix& chm, |
51 int pr_as_read_syntax = 0); | 51 int pr_as_read_syntax = 0, |
52 int pr_as_string = 0); | |
52 | 53 |
53 extern void set_format_style (int argc, char **argv); | 54 extern void set_format_style (int argc, char **argv); |
54 | 55 |
55 // XXX FIXME XXX -- these should probably be somewhere else. | 56 // XXX FIXME XXX -- these should probably be somewhere else. |
56 | 57 |