annotate src/pr-output.h @ 2920:53529870701e

[project @ 1997-05-01 19:19:58 by jwe]
author jwe
date Thu, 01 May 1997 19:19:58 +0000
parents 8bb31a2b480b
children bc3fdfe311a3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
1 /*
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
2
2847
8b262e771614 [project @ 1997-03-27 16:18:26 by jwe]
jwe
parents: 2387
diff changeset
3 Copyright (C) 1996, 1997 John W. Eaton
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
4
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
6
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
10 later version.
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
11
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
15 for more details.
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
16
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
1315
611d403c7f3d [project @ 1995-06-25 19:56:32 by jwe]
jwe
parents: 1309
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
20
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
21 */
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
22
383
0b52c68ec81f [project @ 1994-03-09 21:19:44 by jwe]
jwe
parents: 240
diff changeset
23 #if !defined (octave_pr_output_h)
0b52c68ec81f [project @ 1994-03-09 21:19:44 by jwe]
jwe
parents: 240
diff changeset
24 #define octave_pr_output_h 1
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
25
625
9cdb3844008b [project @ 1994-08-19 02:01:31 by jwe]
jwe
parents: 383
diff changeset
26 class ostream;
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
27
1651
e846e361a265 [project @ 1995-12-20 06:59:12 by jwe]
jwe
parents: 1572
diff changeset
28 #include "oct-cmplx.h"
e846e361a265 [project @ 1995-12-20 06:59:12 by jwe]
jwe
parents: 1572
diff changeset
29
1738
bb9d00aa55fb [project @ 1996-01-12 10:56:22 by jwe]
jwe
parents: 1651
diff changeset
30 class ComplexMatrix;
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
31 class Matrix;
1738
bb9d00aa55fb [project @ 1996-01-12 10:56:22 by jwe]
jwe
parents: 1651
diff changeset
32 class Range;
1572
0d9e10d10bd7 [project @ 1995-10-19 04:31:30 by jwe]
jwe
parents: 1355
diff changeset
33 class charMatrix;
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
34
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
35 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
36 octave_print_internal (ostream& os, double d,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
37 bool pr_as_read_syntax = false);
625
9cdb3844008b [project @ 1994-08-19 02:01:31 by jwe]
jwe
parents: 383
diff changeset
38
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
39 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
40 octave_print_internal (ostream& os, const Matrix& m,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
41 bool pr_as_read_syntax = false,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
42 int extra_indent = 0);
625
9cdb3844008b [project @ 1994-08-19 02:01:31 by jwe]
jwe
parents: 383
diff changeset
43
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
44 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
45 octave_print_internal (ostream& os, const Complex& c,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
46 bool pr_as_read_syntax = false);
625
9cdb3844008b [project @ 1994-08-19 02:01:31 by jwe]
jwe
parents: 383
diff changeset
47
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
48 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
49 octave_print_internal (ostream& os, const ComplexMatrix& cm,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
50 bool pr_as_read_syntax = false,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
51 int extra_indent = 0);
625
9cdb3844008b [project @ 1994-08-19 02:01:31 by jwe]
jwe
parents: 383
diff changeset
52
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
53 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
54 octave_print_internal (ostream& os, const Range& r,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
55 bool pr_as_read_syntax = false,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
56 int extra_indent = 0);
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
57
2920
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
58 extern void
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
59 octave_print_internal (ostream& os, const charMatrix& chm,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
60 bool pr_as_read_syntax = false,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
61 bool pr_as_string = false,
53529870701e [project @ 1997-05-01 19:19:58 by jwe]
jwe
parents: 2907
diff changeset
62 int extra_indent = 0);
1355
94697d007075 [project @ 1995-09-05 20:04:15 by jwe]
jwe
parents: 1315
diff changeset
63
1
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
64 #endif
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
65
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
66 /*
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
67 ;;; Local Variables: ***
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
68 ;;; mode: C++ ***
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
69 ;;; End: ***
78fd87e624cb [project @ 1993-08-08 01:13:40 by jwe]
jwe
parents:
diff changeset
70 */