comparison src/OPERATORS/op-fil-rec.cc @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents 585a8809fd9b
children 0ff7323dab8b
comparison
equal deleted inserted replaced
3522:bd422cf62f0c 3523:b80bbb43a1a9
26 26
27 #ifdef HAVE_CONFIG_H 27 #ifdef HAVE_CONFIG_H
28 #include <config.h> 28 #include <config.h>
29 #endif 29 #endif
30 30
31 #include <iostream.h> 31 #include <iostream>
32 32
33 #include "mach-info.h" 33 #include "mach-info.h"
34 34
35 #include "error.h" 35 #include "error.h"
36 #include "oct-stream.h" 36 #include "oct-stream.h"
48 48
49 octave_stream oct_stream = v1.stream_value (); 49 octave_stream oct_stream = v1.stream_value ();
50 50
51 if (oct_stream) 51 if (oct_stream)
52 { 52 {
53 ostream *osp = oct_stream.output_stream (); 53 std::ostream *osp = oct_stream.output_stream ();
54 54
55 if (osp) 55 if (osp)
56 { 56 {
57 ostream& os = *osp; 57 std::ostream& os = *osp;
58 58
59 v2.print_raw (os); 59 v2.print_raw (os);
60 } 60 }
61 else 61 else
62 error ("invalid file specified for binary operator `<<'"); 62 error ("invalid file specified for binary operator `<<'");