summaryrefslogtreecommitdiff
path: root/graphics/plotutils/files/patch-libplot_m__defplot.c
blob: 26bec89e4f8882eed450486c835fb395cec38efd (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/m_defplot.c.orig	Mon Jun 19 00:10:36 2000
+++ libplot/m_defplot.c	Thu Aug  7 11:48:12 2003
@@ -204,13 +204,13 @@
   _m_initialize ();
 }
 
-MetaPlotter::MetaPlotter (istream& in, ostream& out, ostream& err)
+MetaPlotter::MetaPlotter (std::istream& in, std::ostream& out, std::ostream& err)
 	: Plotter (in, out, err)
 {
   _m_initialize ();
 }
 
-MetaPlotter::MetaPlotter (ostream& out)
+MetaPlotter::MetaPlotter (std::ostream& out)
 	: Plotter (out)
 {
   _m_initialize ();
@@ -233,13 +233,13 @@
   _m_initialize ();
 }
 
-MetaPlotter::MetaPlotter (istream& in, ostream& out, ostream& err, PlotterParams &parameters)
+MetaPlotter::MetaPlotter (std::istream& in, std::ostream& out, std::ostream& err, PlotterParams &parameters)
 	: Plotter (in, out, err, parameters)
 {
   _m_initialize ();
 }
 
-MetaPlotter::MetaPlotter (ostream& out, PlotterParams &parameters)
+MetaPlotter::MetaPlotter (std::ostream& out, PlotterParams &parameters)
 	: Plotter (out, parameters)
 {
   _m_initialize ();