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/t_defplot.c.orig Mon Jun 5 22:20:07 2000
+++ libplot/t_defplot.c Thu Aug 7 11:48:12 2003
@@ -195,13 +195,13 @@
_t_initialize ();
}
-TekPlotter::TekPlotter (istream& in, ostream& out, ostream& err)
+TekPlotter::TekPlotter (std::istream& in, std::ostream& out, std::ostream& err)
: Plotter (in, out, err)
{
_t_initialize ();
}
-TekPlotter::TekPlotter (ostream& out)
+TekPlotter::TekPlotter (std::ostream& out)
: Plotter (out)
{
_t_initialize ();
@@ -224,13 +224,13 @@
_t_initialize ();
}
-TekPlotter::TekPlotter (istream& in, ostream& out, ostream& err, PlotterParams ¶meters)
+TekPlotter::TekPlotter (std::istream& in, std::ostream& out, std::ostream& err, PlotterParams ¶meters)
: Plotter (in, out, err, parameters)
{
_t_initialize ();
}
-TekPlotter::TekPlotter (ostream& out, PlotterParams ¶meters)
+TekPlotter::TekPlotter (std::ostream& out, PlotterParams ¶meters)
: Plotter (out, parameters)
{
_t_initialize ();
|