summaryrefslogtreecommitdiff
path: root/graphics/plotutils/files/patch-libplot_s__defplot.c
blob: 79c40653687bd2eaa0e13e6fbeda12d2e1ed6a91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$FreeBSD$

--- libplot/s_defplot.c.orig	Sun Jul  2 18:20:20 2000
+++ libplot/s_defplot.c	Thu Aug  7 11:48:12 2003
@@ -196,13 +196,13 @@
   _s_initialize ();
 }
 
-SVGPlotter::SVGPlotter (istream& in, ostream& out, ostream& err)
+SVGPlotter::SVGPlotter (std::istream& in, std::ostream& out, std::ostream& err)
 	: Plotter (in, out, err)
 {
   _s_initialize ();
 }
 
-SVGPlotter::SVGPlotter (ostream& out)
+SVGPlotter::SVGPlotter (std::ostream& out)
 	: Plotter (out)
 {
   _s_initialize ();
@@ -225,13 +225,13 @@
   _s_initialize ();
 }
 
-SVGPlotter::SVGPlotter (istream& in, ostream& out, ostream& err, PlotterParams &parameters)
+SVGPlotter::SVGPlotter (std::istream& in, std::ostream& out, std::ostream& err, PlotterParams &parameters)
 	: Plotter (in, out, err, parameters)
 {
   _s_initialize ();
 }
 
-SVGPlotter::SVGPlotter (ostream& out, PlotterParams &parameters)
+SVGPlotter::SVGPlotter (std::ostream& out, PlotterParams &parameters)
 	: Plotter (out, parameters)
 {
   _s_initialize ();