r261: Use explicit std:: namespace
[ctsim.git] / libctgraphics / ezplot.cpp
index 8d7b516bb3dd495c98932cebdbe99437f39e4881..14c0a5b29f86aea97db1da7653c3c1b9a36d4e0e 100644 (file)
@@ -6,7 +6,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ezplot.cpp,v 1.16 2000/12/06 01:46:43 kevin Exp $
+**  $Id: ezplot.cpp,v 1.17 2000/12/16 06:12:47 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -37,7 +37,7 @@ static const double DEF_CHARWIDTH = (1./80.); // size of characters in NDC
 static const int DEF_CURVE_CLR = C_RED;
 
 
-EZPlotCurve::EZPlotCurve (const double* xData, const double* yData, int n, int color, int linestyle, int symbol, int symfreq, const string& legend)
+EZPlotCurve::EZPlotCurve (const double* xData, const double* yData, int n, int color, int linestyle, int symbol, int symfreq, const std::string& legend)
   : x(NULL), y(NULL), m_sLegend (legend)
 {
   x = new double [n];