diff src/pr-output.h @ 625:9cdb3844008b

[project @ 1994-08-19 02:01:31 by jwe]
author jwe
date Fri, 19 Aug 1994 02:02:15 +0000
parents 0b52c68ec81f
children dfe01093f657
line wrap: on
line diff
--- a/src/pr-output.h	Wed Aug 17 16:19:45 1994 +0000
+++ b/src/pr-output.h	Fri Aug 19 02:02:15 1994 +0000
@@ -24,18 +24,27 @@
 #if !defined (octave_pr_output_h)
 #define octave_pr_output_h 1
 
-class ostrstream;
+class ostream;
 
 class Matrix;
 class Complex;
 class ComplexMatrix;
 class Range;
 
-extern void octave_print_internal (ostrstream& os, double d);
-extern void octave_print_internal (ostrstream& os, const Matrix& m);
-extern void octave_print_internal (ostrstream& os, const Complex& c);
-extern void octave_print_internal (ostrstream& os, const ComplexMatrix& cm);
-extern void octave_print_internal (ostrstream& os, const Range& r);
+extern void octave_print_internal (ostream& os, double d,
+				   int pr_as_read_syntax = 0);
+
+extern void octave_print_internal (ostream& os, const Matrix& m,
+				   int pr_as_read_syntax = 0);
+
+extern void octave_print_internal (ostream& os, const Complex& c,
+				   int pr_as_read_syntax = 0);
+
+extern void octave_print_internal (ostream& os, const ComplexMatrix& cm,
+				   int pr_as_read_syntax = 0);
+
+extern void octave_print_internal (ostream& os, const Range& r,
+				   int pr_as_read_syntax = 0);
 
 extern void set_format_style (int argc, char **argv);