]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.C
Trivial fixes to some warnings thrown up by MSVS.Net 2003.
[lyx.git] / src / graphics / GraphicsParams.C
index 1a13a5bae25ea82dbebc9d5990a773d01183de7b..6274ea1d6ba77814ef26152691ef95a333f952ae 100644 (file)
 
 #include "lyxlength.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
 
+
+using std::string;
 using std::abs;
-using std::istringstream;
 
 
 namespace lyx {
@@ -46,6 +47,13 @@ bool operator!=(Params const & a, Params const & b)
 }
 
 
+std::ostream & operator<<(std::ostream & os, BoundingBox const & bb)
+{
+       os << bb.xl << ' ' << bb.yb << ' ' << bb.xr << ' ' << bb.yt;
+       return os;
+}
+
+
 BoundingBox::BoundingBox()
        : xl(0), yb(0), xr(0), yt(0)
 {}